public CategoriaRepository(AppVendasContext context) : base(context)
 {
 }
Exemple #2
0
 public DepartamentsController(AppVendasContext context)
 {
     _context = context;
 }
 public SeedingService(AppVendasContext context)
 {
     _context = context;
 }
Exemple #4
0
 protected Repository(AppVendasContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
 public VendaRepository(AppVendasContext context) : base(context)
 {
 }
Exemple #6
0
 public RepositoryProduct(AppVendasContext context)
 {
     _context = context;
 }
 public EstoqueRepository(AppVendasContext context) : base(context)
 {
 }
Exemple #8
0
 public SellerService(AppVendasContext context)
 {
     _context = context;
 }
 public SalesRecordsService(AppVendasContext context)
 {
     _context = context;
 }
 public UnitOfWork(AppVendasContext appVendasContext)
 {
     _appVendasContext = appVendasContext;
 }
Exemple #11
0
 public ProdutoRepository(AppVendasContext context) : base(context)
 {
 }
 public DepartamentService(AppVendasContext context)
 {
     _context = context;
 }