예제 #1
0
 public ParametroAplicacaoService(IContextIronMountain context, IParametroAplicacaoRepository parametroAplicacaoRepository)
 {
     this.parametroAplicacaoRepository = parametroAplicacaoRepository;
     this.context = context;
 }
예제 #2
0
 public SegurancaService(IContextIronMountain context, IConfiguration configurationService, ISegurancaRepository segurancaRepository)
 {
     this.configurationService = configurationService;
     this.segurancaRepository  = segurancaRepository;
     this.context = context;
 }
예제 #3
0
 public UnidadeService(IContextIronMountain context, IUnidadeRepository unidadeRepository)
 {
     this.unidadeRepository = unidadeRepository;
     this.context           = context;
 }
예제 #4
0
 public SecurityController(IContextIronMountain imContext, IConfiguration configurationService, ISegurancaService segurancaService)
 {
     this.imContext            = imContext;
     this.segurancaService     = segurancaService;
     this.configurationService = configurationService;
 }
예제 #5
0
 public DesarquivamentoPesquisaService(IContextIronMountain context, IDesarquivamentoPesquisaRepository DesarquivamentoPesquisaRepository)
 {
     this.DesarquivamentoPesquisaRepository = DesarquivamentoPesquisaRepository;
     this.context = context;
 }
예제 #6
0
 public AdvogadoService(IContextIronMountain context, IAdvogadoRepository advogadoRepository)
 {
     this.advogadoRepository = advogadoRepository;
     this.context            = context;
 }
예제 #7
0
 public AccountService(IContextIronMountain context, IAccountRepository accountRepository)
 {
     this.accountRepository = accountRepository;
     this.context           = context;
 }