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