Example #1
0
 public BizSystemNotifyMsgConsumer(IBizSystemAppService bizSystemAppService,
                                   Func <Guid, INotifySessionActor> notifySessionActorFactory,
                                   IEmployeeCacheService employeeCacheService)
 {
     _bizSystemAppService       = bizSystemAppService;
     _notifySessionActorFactory = notifySessionActorFactory;
     _employeeCacheService      = employeeCacheService;
     _logger = Log.ForContext <BizSystemNotifyMsgConsumer>();
 }
 public WorkbenchController(IWorkbenchAppService workbenchAppService,
                            IClientAppService clientAppService,
                            IBizSystemAppService bizSystemAppService,
                            IBadgeApiClient badgeApiClient,
                            IMobileCodeSender mobileCodeSender,
                            Func <Guid, IUserSettingAppService> userSettingAppServiceFactory)
 {
     _workbenchAppService          = workbenchAppService;
     _badgeApiClient               = badgeApiClient;
     _clientAppService             = clientAppService;
     _bizSystemAppService          = bizSystemAppService;
     _mobileCodeSender             = mobileCodeSender;
     _userSettingAppServiceFactory = userSettingAppServiceFactory;
     _logger = Log.ForContext <WorkbenchController>();
 }
Example #3
0
 protected TodoServiceBase(IBizSystemAppService bizSystemAppService)
 {
     _bizSystemAppService = bizSystemAppService;
 }