Тип System.DateTime сокращен до DateTime в параметре метода AddAsync (в сервисе DailyReportService)

This commit is contained in:
Olga Nemt 2023-03-06 16:54:47 +05:00
parent 52373f8fde
commit 0d16d09ad7

View File

@ -70,7 +70,7 @@ namespace AsbCloudInfrastructure.Services.DailyReport
return dailyReportDto;
}
public async Task<int> AddAsync(int idWell, System.DateTime startDate, CancellationToken token = default)
public async Task<int> AddAsync(int idWell, DateTime startDate, CancellationToken token = default)
{
var well = wellService.GetOrDefault(idWell);
if (well is null || well.Timezone is null)