Beispiel #1
0
 public MembroService(YmagiContext context)
 {
     _context = context;
 }
 public UsuariosController(YmagiContext context)
 {
     _context = context;
 }
 public ProdutosController(YmagiContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public OscsController(YmagiContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public SeedingService(YmagiContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public OscService(YmagiContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public UsuariosController(YmagiContext context, MembroService membroService, UsuarioService usuarioService)
 {
     _context        = context;
     _membroService  = membroService;
     _usuarioService = usuarioService;
 }
 public FornecedoresController(YmagiContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public EntregasController(YmagiContext context)
 {
     _context = context;
 }
 public RecebimentosController(YmagiContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public UsuarioService(YmagiContext context)
 {
     _context = context;
 }
 public MembrosController(YmagiContext context, OscService oscService, MembroService membroService)
 {
     _context       = context;
     _oscService    = oscService;
     _membroService = membroService;
 }