public DesenvolvedorController(
     ILogger <LubyTestDB> _logger,
     LubyTestDB context)
 {
     logger  = _logger;
     devCrud = new DesenvolvedorCRUD(context);
 }
 public HorasAcomuladasDevController(
     ILogger <LubyTestDB> _logger,
     LubyTestDB context)
 {
     logger    = _logger;
     horasCrud = new HorasAcomuladasDevCRUD(context);
 }
 public ProjetosController(
     ILogger <LubyTestDB> _logger,
     LubyTestDB context)
 {
     logger  = _logger;
     ProCrud = new ProjetoCRUD(context);
 }
 public HorasAcomuladasDevCRUD(LubyTestDB _context)
 {
     context   = _context;
     bancoCrud = new BancoHorasCRUD(context);
     devCrud   = new DesenvolvedorCRUD(context);
 }
Ejemplo n.º 5
0
 public DesenvolvedorCRUD(LubyTestDB _context)
 {
     context = _context;
 }
Ejemplo n.º 6
0
 public BancoHorasCRUD(LubyTestDB _context)
 {
     context = _context;
 }
Ejemplo n.º 7
0
 public ProjetoCRUD(LubyTestDB _context)
 {
     context = _context;
 }
 public BancoHorasController(ILogger <LubyTestDB> log, LubyTestDB ctx)
 {
     logger    = log;
     bancoCRUD = new BancoHorasCRUD(ctx);
     horasCrud = new HorasAcomuladasDevCRUD(ctx);
 }