public RegisterController(INotificationHandler <DomainNotification> notification,
                           IConfiguration Configuration, IRegisterAppService RegisterAppService) : base(notification)
 {
     _configuration       = Configuration;
     _notificationHandler = (DomainNotificationHandler)notification;
     _registerAppService  = RegisterAppService;
 }
Example #2
0
 public TransactionController(IBankAppService bankAppService, IRegisterAppService registerAppService, IGrandChildTreeAppService grandChildTreeAppService, IChildTreeAppService childTreeAppService, IParentTreeAppService parentTreeAppService)
 {
     _childTreeAppService      = childTreeAppService;
     _grandChildTreeAppService = grandChildTreeAppService;
     _parentTreeAppService     = parentTreeAppService;
     _bankAppService           = bankAppService;
     _registerAppService       = registerAppService;
 }
 public ConfiguracoesController(IDomainNotificationHandler notification, IMapper mapper,
                                IUserAppServices userappService,
                                IRegisterAppService registerAppService,
                                IQueryAppService localsAppService,
                                JsonServices jsonService) : base(notification, userappService)
 {
     _registerAppService = registerAppService;
     _localsAppService   = localsAppService;
     _jsonService        = jsonService;
     _mapper             = mapper;
 }
Example #4
0
 public RegisterController(IRegisterAppService registerAppService)
 {
     _registerAppService = registerAppService;
 }
Example #5
0
 /// <summary>
 /// ControllerRegister
 /// </summary>
 /// <param name="appService"></param>
 public ControllerRegister(IRegisterAppService <T> appService)
 {
     _appService = appService;
     Entity      = (T)Activator.CreateInstance(typeof(T));
 }
 public RegisterController(IBankAppService bankAppService, IRegisterAppService registerAppService)
 {
     _bankAppService     = bankAppService;
     _registerAppService = registerAppService;
 }