예제 #1
0
 public ControleService(SolNWebAppContext context)
 {
     _context = context;
 }
 public ControleLancamentoesController(SolNWebAppContext context)
 {
     _context = context;
 }
예제 #3
0
 public SeedService(SolNWebAppContext context)
 {
     _context = context;
 }
예제 #4
0
 public SituacaoService(SolNWebAppContext context)
 {
     _context = context;
 }
예제 #5
0
 public AtletasController(SolNWebAppContext context, AtletaService atletaService)
 {
     _context       = context;
     _atletaService = atletaService;
 }
 public SituacaoDoAtletasController(SolNWebAppContext context, AtletaService atletaService, SituacaoService SituacaoService)
 {
     _context         = context;
     _atletaService   = atletaService;
     _SituacaoService = SituacaoService;
 }
 public LancamentoesController(SolNWebAppContext context, LancamentoService lancamentoService, ControleService controleService)
 {
     _context           = context;
     _controleService   = controleService;
     _lancamentoService = lancamentoService;
 }
예제 #8
0
 public LancamentoService(SolNWebAppContext context)
 {
     _context = context;
 }
예제 #9
0
 public AtletaService(SolNWebAppContext context)
 {
     _context = context;
 }