This commit is contained in:
2020-03-16 19:36:46 +00:00
parent e69d287125
commit a972dff324

View File

@@ -15,7 +15,7 @@ namespace AyaNova.PickList
{
internal static class PickListFetcher
{
internal static async Task<List<NameIdActiveItem>> GetResponseAsync(AyaType ayaType, string autoCompleteQuery, bool includeInactive, AyContext ct, AuthorizationRoles userRoles)
{
@@ -76,6 +76,12 @@ namespace AyaNova.PickList
{
//query is always in the same order:
//plId, plActive, plName
ret.Add(new NameIdActiveItem
{
Id = dr.GetInt64(0),
Active = dr.GetBoolean(1),
Name = dr.GetString(2)
});
// List<AyaFieldData> row = new List<AyaFieldData>(returnRowColumnCount);