public AccountController(ApplicationSignInManager signInManager, ApplicationUserManager userManager, IAgenciaAppService agenciaUsuarioAppService,
                          IRegistroAppService registroappservice)
 {
     _userManager               = userManager;
     _signInManager             = signInManager;
     _agenciaUsuarioAppService  = agenciaUsuarioAppService;
     _registrousuarioappservice = registroappservice;
 }
Exemple #2
0
 public AgenciaController(IAgenciaAppService agenciaAppService,
                          IBancoAppService bancoAppService,
                          IDomainNotificationHandler <DomainNotification> notifications,
                          IUser user)
     : base(notifications, user)
 {
     _agenciaAppService = agenciaAppService;
     _bancoAppService   = bancoAppService;
 }
Exemple #3
0
 public AgenciaController(IBancoAppService bancoAppService,
                          IAgenciaAppService agenciaAppService,
                          IUnidadeFederacaoAppService unidadeFederacaoAppService,
                          MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.bancoAppService            = bancoAppService;
     this.agenciaAppService          = agenciaAppService;
     this.unidadeFederacaoAppService = unidadeFederacaoAppService;
 }
Exemple #4
0
 public ContaCorrenteController(
     IBancoAppService bancoAppService,
     IAgenciaAppService agenciaAppService,
     IContaCorrenteAppService contaCorrenteAppService,
     MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.bancoAppService         = bancoAppService;
     this.agenciaAppService       = agenciaAppService;
     this.contaCorrenteAppService = contaCorrenteAppService;
 }
 public AgenciaController(IAgenciaAppService initAgenciaAppService)
 {
     _AgenciaAppService = initAgenciaAppService;
 }
Exemple #6
0
 public CelulaController(ClienteAppService clienteappservice, IAgenciaAppService agenciaappservice)
 {
     _clienteappservice = clienteappservice;
     _agenciaappservice = agenciaappservice;
 }
Exemple #7
0
 public AgenciaController(AgenciaAppservice agenciaappservice)
 {
     _agenciaappservice = agenciaappservice;
 }
Exemple #8
0
 public HomeController(IAgenciaAppService agenciaUsuarioAppService)
 {
     _agenciaUsuarioAppService = agenciaUsuarioAppService;
 }
Exemple #9
0
 public ManageController(ApplicationSignInManager signInManager, ApplicationUserManager userManager, IAgenciaAppService agenciaUsuarioAppService)
 {
     _userManager              = userManager;
     _signInManager            = signInManager;
     _agenciaUsuarioAppService = agenciaUsuarioAppService;
 }
Exemple #10
0
 public RegistroAcessoAgenciaUsuarioController(IRegistroAppService registroappservice, IAgenciaAppService agenciaappservice)
 {
     _registroappservice = registroappservice;
     _agenciaappservice  = agenciaappservice;
 }