Правки

This commit is contained in:
Olga Nemt 2023-05-23 10:53:31 +05:00
parent 2e96f1982f
commit bc0e33aaf5
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ namespace AsbCloudApp.Data
/// <summary>
/// Дата начала операции
/// </summary>
[DateValidation(AllowNull = false)]
[DateValidation(GtDate = "2010-01-01T00:00:00")]
public DateTime DateStart { get; set; }
/// <summary>

View File

@ -308,7 +308,7 @@ namespace AsbCloudWebApi.Controllers
try
{
wellOperationImportService.Import(idWell, stream, idUser!.Value, (options & 1) > 0);
wellOperationImportService.Import(idWell, stream, idUser.Value, (options & 1) > 0);
}
catch (FileFormatException ex)
{