nameof fix
This commit is contained in:
parent
68512dba2b
commit
6555d6343f
@ -11,11 +11,11 @@ namespace RhSolutions.Services
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)this["PriceListPath"];
|
||||
return (string)this[nameof(PriceListPath)];
|
||||
}
|
||||
set
|
||||
{
|
||||
this["PriceListPath"] = value;
|
||||
this[nameof(PriceListPath)] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user