diff --git a/Models/DyelotsBatchProvider.cs b/Models/DyelotsBulkedRecipeProvider.cs similarity index 61% rename from Models/DyelotsBatchProvider.cs rename to Models/DyelotsBulkedRecipeProvider.cs index 77212a7..c18d254 100644 --- a/Models/DyelotsBatchProvider.cs +++ b/Models/DyelotsBulkedRecipeProvider.cs @@ -6,24 +6,24 @@ using System.Threading.Tasks; namespace Models { - public class DyelotsBatchProvider : IProvider + public class DyelotsBulkedRecipeProvider : IProvider { - public int Delete(DyelotsBatch t) + public int Delete(DyelotsBulkedRecipe t) { throw new NotImplementedException(); } - public int Insert(DyelotsBatch t) + public int Insert(DyelotsBulkedRecipe t) { throw new NotImplementedException(); } - public List Select() + public List Select() { throw new NotImplementedException(); } - public int Update(DyelotsBatch t) + public int Update(DyelotsBulkedRecipe t) { throw new NotImplementedException(); }