Пример #1
0
 public ActivityManageController(IEventService objService, IEventProfileService objService1, IDataPermissionCheck permissionService)
     : base(objService)
 {
     _objEventService   = objService;
     _objService1       = objService1;
     _permissionService = permissionService;
 }
 public EventManageController(IEventProfileService objService,
                              IEventService eventService)
     : base(objService)
 {
     _objService   = objService;
     _eventService = eventService;
 }
 public ActivityManageController(IEventService eventService, IEventProfileService eventProfileService, IDataPermissionCheck permissionService)
     : base(eventService)
 {
     _eventService        = eventService;
     _eventProfileService = eventProfileService;
     _permissionService   = permissionService;
 }
Пример #4
0
 public EventMessageController(IMessageService objService, IEventProfileService eventProfileService)
     : base(objService)
 {
     _eventProfileService = eventProfileService;
 }
Пример #5
0
 public EventMessageTextController(IMessageTextService objService, int appId, IEventProfileService eventProfileService) : base(objService, appId)
 {
     _eventProfileService = eventProfileService;
 }