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>(); }
protected TodoServiceBase(IBizSystemAppService bizSystemAppService) { _bizSystemAppService = bizSystemAppService; }