nameof fix

This commit is contained in:
Sergey Chebotar 2023-03-28 07:33:32 +03:00
parent 68512dba2b
commit 6555d6343f

View File

@ -11,11 +11,11 @@ namespace RhSolutions.Services
{ {
get get
{ {
return (string)this["PriceListPath"]; return (string)this[nameof(PriceListPath)];
} }
set set
{ {
this["PriceListPath"] = value; this[nameof(PriceListPath)] = value;
} }
} }