public FornecedorRepository(LeTContext context) : base(context)
 {
 }
Пример #2
0
 public UnitOfWork(LeTContext context)
 {
     this._context = context;
 }
 public ContatoRepository(LeTContext context) : base(context)
 {
 }
Пример #4
0
 public Repository(LeTContext context)
 {
     this.Context = context;
     DbSet        = this.Context.Set <TEntity>();
 }