public BotSubscriptionService(IPlanObjectService planObjectService,
                               IBotSubscriptionObjectService botSubscriptionObjectService,
                               ITopicObjectService topicObjectService)
 {
     _planObjectService            = planObjectService;
     _botSubscriptionObjectService = botSubscriptionObjectService;
     _topicObjectService           = topicObjectService;
 }
예제 #2
0
 public PlanAreaService(
     ITopicService topicService,
     IPlanAreaObjectService planAreaObjectService,
     ITopicObjectService topicObjectService,
     IBotSubscriptionObjectService botSubscriptionObjectService)
 {
     _topicService                 = topicService;
     _planAreaObjectService        = planAreaObjectService;
     _topicObjectService           = topicObjectService;
     _botSubscriptionObjectService = botSubscriptionObjectService;
 }
예제 #3
0
 public TopicService(
     ITopicObjectService topicObjectService)
 {
     _topicObjectService = topicObjectService;
 }