Compare commits
2 Commits
df1e87897f
...
0a6f2e2011
Author | SHA1 | Date |
---|---|---|
|
0a6f2e2011 | |
|
b30d11b5dd |
|
@ -101,10 +101,10 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
|
|
||||||
if (unit == ValueUnit.Custom)
|
if (unit == ValueUnit.Custom)
|
||||||
{
|
{
|
||||||
return answer + customUnit;
|
return answer + string.Empty + customUnit;
|
||||||
}
|
}
|
||||||
|
|
||||||
return answer + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
|
return answer +string.Empty + unitDataList.Where(y => y.Unit == unit).Select(x => x.UnitName).FirstIsNullReturnEmpty();
|
||||||
}
|
}
|
||||||
public string GetEntityAuditOpt(EntityEntry entityEntry)
|
public string GetEntityAuditOpt(EntityEntry entityEntry)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue