You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
707 B
32 lines
707 B
|
4 years ago
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace Models
|
||
|
|
{
|
||
|
4 years ago
|
public class DyelotsBulkedRecipeProvider : IProvider<DyelotsBulkedRecipe>
|
||
|
4 years ago
|
{
|
||
|
4 years ago
|
public int Delete(DyelotsBulkedRecipe t)
|
||
|
4 years ago
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
4 years ago
|
public int Insert(DyelotsBulkedRecipe t)
|
||
|
4 years ago
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
4 years ago
|
public List<DyelotsBulkedRecipe> Select()
|
||
|
4 years ago
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
4 years ago
|
public int Update(DyelotsBulkedRecipe t)
|
||
|
4 years ago
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|