Пример #1
0
 public FulfillmentManager(IFulfillmentRepository fulfillRepository)
 {
     if (fulfillRepository == null)
         this.fulfillRepository = new FulfillmentRepository();
     else
         this.fulfillRepository = fulfillRepository;
 }
Пример #2
0
 public UpdateCommandHandler(IFulfillmentRepository fulfillmentRepository, IFulfillmentQueries fulfillmentQueries, ILocationRepository locationRepository)
 {
     this.fulfillmentRepository = fulfillmentRepository;
     this.fulfillmentQueries    = fulfillmentQueries;
     this.locationRepository    = locationRepository;
 }
Пример #3
0
 public FulfillmentCmdHandler(IFulfillmentRepository repository)
 {
     _repository = repository;
 }
Пример #4
0
 public DeleteCommandHandler(IFulfillmentRepository fulfillmentRepository)
 {
     this.fulfillmentRepository = fulfillmentRepository;
 }