This commit is contained in:
@@ -190,8 +190,7 @@ namespace AyaNova.Biz
|
||||
//
|
||||
internal async Task<List<string>> GetPriorUnitsAsync()
|
||||
{
|
||||
var ret = await ct.ServiceRate.AsNoTracking().Select(x => x.Unit).Distinct().OrderBy(x => x).ToListAsync();
|
||||
return ret;
|
||||
return await ct.ServiceRate.AsNoTracking().Select(x => x.Unit).Distinct().OrderBy(x => x).ToListAsync();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -185,7 +185,13 @@ namespace AyaNova.Biz
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//GET PRIOR UNITS LIST
|
||||
//
|
||||
internal async Task<List<string>> GetPriorUnitsAsync()
|
||||
{
|
||||
return await ct.TravelRate.AsNoTracking().Select(x => x.Unit).Distinct().OrderBy(x => x).ToListAsync();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//SEARCH
|
||||
|
||||
Reference in New Issue
Block a user