Ejemplo n.º 1
0
 public MembroService(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public UsuariosController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public ProdutosController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public OscsController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public SeedingService(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public OscService(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 7
0
 public UsuariosController(YmagiContext context, MembroService membroService, UsuarioService usuarioService)
 {
     _context        = context;
     _membroService  = membroService;
     _usuarioService = usuarioService;
 }
Ejemplo n.º 8
0
 public FornecedoresController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 9
0
 public EntregasController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 10
0
 public RecebimentosController(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 11
0
 public UsuarioService(YmagiContext context)
 {
     _context = context;
 }
Ejemplo n.º 12
0
 public MembrosController(YmagiContext context, OscService oscService, MembroService membroService)
 {
     _context       = context;
     _oscService    = oscService;
     _membroService = membroService;
 }