示例#1
0
 public DeliveryCompanyController(IDeliveryCompanyService service)
 {
     this.service = service;
 }
示例#2
0
 public DeliveryController(IDeliveryCompanyService deliveryCompanyService, IDeliveryService deliveryService, IReceiptService receiptService)
 {
     this.deliveryCompanyService = deliveryCompanyService;
     this.deliveryService        = deliveryService;
     this.receiptService         = receiptService;
 }