4 changed files with 34 additions and 2 deletions
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Models |
|||
{ |
|||
public class ProductProvider : IProvider<Product> |
|||
{ |
|||
public int Delete(Product t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Insert(Product t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public List<Product> Select() |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Update(Product t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue