Exemple #1
0
 public CustomersController(IGetCustomerListQuery customerContext, IGetCustomerDetailQuery customerDetailContext,
                            ICreateCustomerCommand customerCreateContext, IUpdateCustomerCommand customerUpdateContext, IDeleteCustomerCommand customerDeleteContext)
 {
     _customerContext       = customerContext;
     _customerDetailContext = customerDetailContext;
     _customerCreateContext = customerCreateContext;
     _customerUpdateContext = customerUpdateContext;
     _customerDeleteContext = customerDeleteContext;
 }
Exemple #2
0
 public CustomersController(
     IGetCustomerListQuery getCustomerListQuery,
     IGetCustomerDetailQuery getCustomerDetailQuery,
     ICreateCustomerCommand createCustomerCommand,
     IUpdateCustomerCommand updateCustomerCommand,
     IDeleteCustomerCommand deleteCustomerCommand)
 {
     _getCustomerListQuery   = getCustomerListQuery;
     _getCustomerDetailQuery = getCustomerDetailQuery;
     _createCustomerCommand  = createCustomerCommand;
     _updateCustomerCommand  = updateCustomerCommand;
     _deleteCustomerCommand  = deleteCustomerCommand;
 }
 public CustomersController(IGetCustomerListQuery query)
 {
     _query = query;
 }
 public CustomersController(IGetCustomerListQuery getCustomerListQuery)
 {
     _getCustomerListQuery = getCustomerListQuery;
 }