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