diff --git a/PARR.DAL/Models/ApplicationsInWork.cs b/PARR.DAL/Models/ApplicationsInWork.cs index 12c46cf1..4ced1e9a 100644 --- a/PARR.DAL/Models/ApplicationsInWork.cs +++ b/PARR.DAL/Models/ApplicationsInWork.cs @@ -62,7 +62,8 @@ namespace PARR.DAL.Models set { //удаляем префикс, если он есть - _fullDescription = value.Replace($"\r\n{PrefixSettings.PrefixWithoutVariable}", string.Empty); + //_fullDescription = value.Replace($"\r\n{PrefixSettings.PrefixWithoutVariable}", string.Empty); + _fullDescription = value.Replace($"{PrefixSettings.PrefixWithoutVariable}", string.Empty).TrimEnd(); } } diff --git a/PARR.Test/Worker.cs b/PARR.Test/Worker.cs index 6a38435e..233dccbf 100644 --- a/PARR.Test/Worker.cs +++ b/PARR.Test/Worker.cs @@ -35,6 +35,7 @@ namespace PARR.Test + ////test interval //await intervalService.IntervalInitAsync(async () => //{ @@ -46,7 +47,7 @@ namespace PARR.Test //await TestEsppApi(); - await StopDiscontinuedOrdersInEspp(); + //await StopDiscontinuedOrdersInEspp(); }