Ejemplo n.º 1
0
 public void GetListStore(List <SelectListItem> lstStore)
 {
     foreach (var item in lstStore)
     {
         ListStore.Add(new StoreItem
         {
             StoreId   = item.Value,
             StoreName = item.Text
         });
     }
 }