Example #1
0
 public LoanRequestApplicationService(ICustomerApplicationService customerApplicationService,
                                      IRepository <LoanRequest, Guid> loanRequestRepository, IUnitOfWorkManager uowManager)
 {
     CustomerApplicationService = customerApplicationService;
     _loanRequestRepository     = loanRequestRepository;
     _uowManager = uowManager;
 }
Example #2
0
 public InvoicingController(IInvoiceApplicationService invoiceService,
                            ICustomerApplicationService customerService,
                            IProjectApplicationService projectService)
 {
     InvoiceService  = invoiceService;
     CustomerService = customerService;
     ProjectService  = projectService;
 }
 public BankTransferController(ITransactionApplicationService transactionApplicationService,
                               ICustomerApplicationService customerApplicationService,
                               IBankAccountApplicationService bankAccountApplicationService)
 {
     _transactionApplicationService = transactionApplicationService;
     _customerApplicationService    = customerApplicationService;
     _bankAccountApplicationService = bankAccountApplicationService;
 }
Example #4
0
 public ProjectController(IProjectApplicationService projectService,
                          ICustomerApplicationService customerService,
                          IUserApplicationService userService,
                          ITaskApplicationService taskService)
 {
     ProjectService  = projectService;
     CustomerService = customerService;
     UserService     = userService;
     TaskService     = taskService;
 }
Example #5
0
 public HomeController(ActiveDirectory activeDirectory,
                       ICustomerApplicationService customerService,
                       ITaskApplicationService taskService,
                       IUserApplicationService userService,
                       IProjectApplicationService projectService)
 {
     ActiveDirectory = activeDirectory;
     CustomerService = customerService;
     TaskService     = taskService;
     UserService     = userService;
     ProjectService  = projectService;
 }
Example #6
0
 public RegistrationController(IUserApplicationService userService,
                               IRegistrationApplicationService registrationService,
                               ICustomerApplicationService customerService,
                               IProjectApplicationService projectService,
                               ITaskApplicationService taskService)
 {
     UserService         = userService;
     RegistrationService = registrationService;
     CustomerService     = customerService;
     ProjectService      = projectService;
     TaskService         = taskService;
 }
Example #7
0
 public CustomersController(ICustomerApplicationService applicationServiceCustomer)
 {
     this.applicationServiceCustomer = applicationServiceCustomer;
 }
Example #8
0
 public CustomersController(ICustomerApplicationService customerApplicationService)
 {
     _customerApplicationService = customerApplicationService;
 }
Example #9
0
 public CustomerController(ICustomerApplicationService customerApplicationService)
 {
     _customerApplicationService = customerApplicationService;
     responseHandler             = new ResponseHandler();
 }
 public HomeController(ICustomerApplicationService customerApplicationService, ILogger <HomeController> logger)
     : base(logger)
 {
     _customerApplicationService = customerApplicationService;
 }
Example #11
0
        //public CustomerController() { }

        public CustomerController(ICustomerApplicationService service)
        {
            _service = service;
        }
Example #12
0
 public CustomerController()
 {
     CustomerApplicationService = new CustomerApplicationService();
 }
 public CustomersController(ICustomerQueries customerQueries, ICustomerApplicationService customerService)
 {
     _customerQueries            = customerQueries;
     _customerApplicationService = customerService;
 }
Example #14
0
 public CustomerController(ICustomerApplicationService customerService, IProjectApplicationService projectService)
 {
     CustomerService = customerService;
     ProjectService  = projectService;
 }