public HomeController(
     IConsultationService consultationService,
     IOrderManageService orderManageService,
     IOrderTradeRecordService orderTradeRecordService,
     IRefundManageService refundManageService,
     ILeaguerInfoService leaguerservice,
     IUnitOfWorkManager unitOfWorkManager,
     IAttachmentServices attachmentServices,
     IUserManagerService userManagerService,
     IPublishsService publishsService,
     IAbpSession session,
     IYaeherOperListService yaeherOperListService,
     INotificationPublisher notificationPublisher)
 {
     _consultationService      = consultationService;
     _orderManageService       = orderManageService;
     _orderTradeRecordService  = orderTradeRecordService;
     _refundManageService      = refundManageService;
     _leaguerservice           = leaguerservice;
     _unitOfWorkManager        = unitOfWorkManager;
     _IabpSession              = session;
     _attachmentService        = attachmentServices;
     _userManagerService       = userManagerService;
     _publishsService          = publishsService;
     _YaeherOperListrepository = yaeherOperListService;
     _notificationPublisher    = notificationPublisher;
 }
Exemple #2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="leaguerservice"></param>
 /// <param name="session"></param>
 /// <param name="yaeherOperListService"></param>
 public YaeherPatientLeaguerInfoController(ILeaguerInfoService leaguerservice,
                                           IAbpSession session,
                                           IYaeherOperListService yaeherOperListService)
 {
     _LeaguerService        = leaguerservice;
     _IabpSession           = session;
     _yaeherOperListService = yaeherOperListService;
 }