Пример #1
0
 public WebApiAppService(
     INotifyWeChatAppService notifyWeChatAppService,
     IAppAppService appAppService)
 {
     _notifyWeChatAppService = notifyWeChatAppService;
     _appAppService          = appAppService;
 }
 public NotifyAppCanAppServiceTests()
 {
     _appAppService    = LocalIocManager.IocContainer.Resolve <IAppAppService>();
     _webApiAppService = LocalIocManager.IocContainer.Resolve <IWebApiAppService>();
 }
Пример #3
0
 public PushJob()
 {
     _appAppService = IocManager.Instance.IocContainer.Resolve <IAppAppService>();
 }
Пример #4
0
 public AppsController(IAppAppService appAppService)
 {
     _appAppService = appAppService;
 }
Пример #5
0
 public AppController(IAppAppService appAppService,
                      INotificationHandler <DomainNotification> notifications,
                      IMediatorHandler mediator) : base(notifications, mediator)
 {
     _appAppService = appAppService;
 }