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