sc 4 years ago
parent
commit
421abf8a82
  1. 10
      Models/DyelotsBulkedRecipeProvider.cs

10
Models/DyelotsBatchProvider.cs → Models/DyelotsBulkedRecipeProvider.cs

@ -6,24 +6,24 @@ using System.Threading.Tasks;
namespace Models
{
public class DyelotsBatchProvider : IProvider<DyelotsBatch>
public class DyelotsBulkedRecipeProvider : IProvider<DyelotsBulkedRecipe>
{
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<DyelotsBatch> Select()
public List<DyelotsBulkedRecipe> Select()
{
throw new NotImplementedException();
}
public int Update(DyelotsBatch t)
public int Update(DyelotsBulkedRecipe t)
{
throw new NotImplementedException();
}
Loading…
Cancel
Save