feat(bll): заготовка ICalendarService
This commit is contained in:
@@ -11,16 +11,19 @@ namespace PARR.Test
|
||||
private readonly ILogger<Worker> _logger;
|
||||
private readonly IEsppApiService esppApiService;
|
||||
private readonly IIntervalService intervalService;
|
||||
private readonly ICalendarService calendarService;
|
||||
|
||||
public Worker(
|
||||
ILogger<Worker> logger,
|
||||
IEsppApiService esppApiService,
|
||||
IIntervalService intervalService
|
||||
IIntervalService intervalService,
|
||||
ICalendarService calendarService
|
||||
)
|
||||
{
|
||||
_logger = logger;
|
||||
this.esppApiService = esppApiService;
|
||||
this.intervalService = intervalService;
|
||||
this.calendarService = calendarService;
|
||||
}
|
||||
|
||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
||||
@@ -33,7 +36,14 @@ namespace PARR.Test
|
||||
|
||||
#endregion
|
||||
|
||||
#region Calendar
|
||||
|
||||
var testCalendar = new BLL.Services.Implementations.Test(calendarService);
|
||||
|
||||
testCalendar.Ttt() ;
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
////test interval
|
||||
|
||||
Reference in New Issue
Block a user