using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class UserAccountProvide : IProvider { private readonly TicketEntities db = new TicketEntities(); public int Delete(UserAccount t) { throw new NotImplementedException(); } public int Insert(UserAccount t) { throw new NotImplementedException(); } public List Select() { return db.UserAccount.ToList(); } public List Selectsql(UserAccount t) { throw new NotImplementedException(); } public int Update(UserAccount t) { throw new NotImplementedException(); } } }