public CheckSubmittedDailyReportsTask(
     CrmService crmService,
     TelegramBot telegramBot,
     NotificationSubscriptionService subscriptionService,
     TelemetryClient telemetry)
 {
     this.crmService          = crmService;
     this.telegramBot         = telegramBot;
     this.subscriptionService = subscriptionService;
     this.telemetry           = telemetry;
 }
Ejemplo n.º 2
0
 public SubscribeDailyReportNotificationsCommand(NotificationSubscriptionService subscriptionService, IAppUnitOfWorkFactory unitOfWork)
 {
     this.subscriptionService = subscriptionService;
     uow = unitOfWork;
 }