5 changed files with 97 additions and 1 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 DyelotsBatchProvider : IProvider<DyelotsBatch> |
|||
{ |
|||
public int Delete(DyelotsBatch t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Insert(DyelotsBatch t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public List<DyelotsBatch> Select() |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Update(DyelotsBatch t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Models |
|||
{ |
|||
public class DyelotsProvider : IProvider<Dyelots> |
|||
{ |
|||
public int Delete(Dyelots t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Insert(Dyelots t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public List<Dyelots> Select() |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Update(Dyelots t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Models |
|||
{ |
|||
public class MachinesProvider : IProvider<Machines> |
|||
{ |
|||
public int Delete(Machines t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Insert(Machines t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public List<Machines> Select() |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
|
|||
public int Update(Machines t) |
|||
{ |
|||
throw new NotImplementedException(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue