public FulfillmentManager(IFulfillmentRepository fulfillRepository)
 {
     if (fulfillRepository == null)
         this.fulfillRepository = new FulfillmentRepository();
     else
         this.fulfillRepository = fulfillRepository;
 }
 public UpdateCommandHandler(IFulfillmentRepository fulfillmentRepository, IFulfillmentQueries fulfillmentQueries, ILocationRepository locationRepository)
 {
     this.fulfillmentRepository = fulfillmentRepository;
     this.fulfillmentQueries    = fulfillmentQueries;
     this.locationRepository    = locationRepository;
 }
Exemple #3
0
 public FulfillmentCmdHandler(IFulfillmentRepository repository)
 {
     _repository = repository;
 }
 public DeleteCommandHandler(IFulfillmentRepository fulfillmentRepository)
 {
     this.fulfillmentRepository = fulfillmentRepository;
 }