示例#1
0
 public SmsService(
     SmsRepository smsRepository,
     TemplateService templateService,
     ScenicService scenicService,
     OrderDetailService orderDetailService)
 {
     _smsRepository      = smsRepository;
     _templateService    = templateService;
     _scenicService      = scenicService;
     _orderDetailService = orderDetailService;
 }
示例#2
0
 public PrintService(
     OrderService orderService,
     TicketService ticketService,
     OrderDetailService orderDetailService,
     ScenicService scenicService,
     EnterpriseUserService enterpriseUserService)
 {
     _orderService          = orderService;
     _ticketService         = ticketService;
     _orderDetailService    = orderDetailService;
     _printGateway          = new PrintGateway();
     _scenicService         = scenicService;
     _enterpriseUserService = enterpriseUserService;
 }