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