Exemple #1
0
 public ControleService(SolNWebAppContext context)
 {
     _context = context;
 }
 public ControleLancamentoesController(SolNWebAppContext context)
 {
     _context = context;
 }
Exemple #3
0
 public SeedService(SolNWebAppContext context)
 {
     _context = context;
 }
 public SituacaoService(SolNWebAppContext context)
 {
     _context = context;
 }
 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;
 }
 public LancamentoService(SolNWebAppContext context)
 {
     _context = context;
 }
Exemple #9
0
 public AtletaService(SolNWebAppContext context)
 {
     _context = context;
 }