public EmpresasController(ManagmentRRContext context)
 {
     _context = context;
 }
 public SeedingService(ManagmentRRContext context)
 {
     _context = context;
 }
Exemple #3
0
 public UserServices(ManagmentRRContext context)
 {
     _context = context;
 }
Exemple #4
0
 public UsersController(ManagmentRRContext context)
 {
     _context = context;
 }
 public EmpresaServices(ManagmentRRContext context)
 {
     _context = context;
 }
Exemple #6
0
 public TapeService(ManagmentRRContext context)
 {
     _context = context;
 }
 public TapesController(ManagmentRRContext context, Services.EmpresaServices empresaService)
 {
     _context        = context;
     _empresaService = empresaService;
 }