예제 #1
0
        /// <summary>
        /// Fucntion to get Customers details
        /// </summary>
        /// <param name="customerCommands"></param>
        public CustomersController(ICustomerCommands customerCommands)

        {
            _customerCommands = customerCommands;
        }
예제 #2
0
 public CustomerService(ICustomerCommands customerCommand, ICustomerQueries customerQuery)
 {
     _customerCommand = customerCommand;
     _customerQuery   = customerQuery;
 }
예제 #3
0
 public CustomerController(ICustomerCommands customerCommands, ICustomerQueries customerQueries)
 {
     _customerCommands = customerCommands;
     _customerQueries  = customerQueries;
 }
예제 #4
0
 public CustomerController(ICustomerCommands customerCommands, ICustomerQueries customerQueries)
 {
     _customerCommands = customerCommands;
     _customerQueries = customerQueries;
 }
예제 #5
0
 public CustomerService(ICustomerCommands customerCommand, ICustomerQueries customerQuery)
 {
     _customerCommand = customerCommand;
     _customerQuery = customerQuery;
 }