using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class MachinesProvider : IProvider { private BatchDyeingCentralEntities db = new BatchDyeingCentralEntities(); public int Delete(Machines t) { throw new NotImplementedException(); } public int Insert(Machines t) { throw new NotImplementedException(); } public List Select() { throw new NotImplementedException(); } public List Selectsql(Machines t) { throw new NotImplementedException(); } public int Update(Machines t) { throw new NotImplementedException(); } } }