public ExchangeObjectController(IChannelAppService channelAppService, IExchangeObjectAppService exchangeObjectAppService, IDepartmentAppService departmentAppService,
                                 IUserAppService userAppService)
 {
     _channelAppService        = channelAppService;
     _exchangeObjectAppService = exchangeObjectAppService;
     _departmentAppService     = departmentAppService;
     _userAppService           = userAppService;
 }
Пример #2
0
 public ChannelsController(IChannelAppService channelAppService)
 {
     _channelAppService = channelAppService;
 }
Пример #3
0
 public ChannelAppService_Tests()
 {
     _channelAppService = Resolve <IChannelAppService>();
 }
Пример #4
0
 public DepartmentController(IDepartmentAppService departmentAppService, IChannelAppService channelAppService)
 {
     _departmentAppService = departmentAppService;
     _channelAppService    = channelAppService;
 }
Пример #5
0
 public ChannelFactory(IChannelAppService channelAppService)
 {
     _channelAppService = channelAppService;
 }