Пример #1
0
        public static List <Size_S> GetBase(string globes, List <Size_Special> Item_List, string pays)
        {
            List <Size_S> list = new List <Size_S>();

            try
            {
                if (!string.IsNullOrEmpty(globes) && !string.IsNullOrEmpty(pays))
                {
                    string[] globeArray = globes.Split(new char[] { ',' });
                    string[] payArray   = pays.Split(new char[] { ',' });
                    for (int i = 0; i < globeArray.Length; i++)
                    {
                        int          clue  = Convert.ToInt32(globeArray[i]);
                        decimal      pay   = Convert.ToDecimal(payArray[i]);
                        Size_Special globe = Item_List.FirstOrDefault(g => g.Code == clue);
                        list.Add(Size_S.GetBase(globe, (float)pay));
                    }
                }
            }
            catch (Exception ex)
            {
                LogHelper.Error(ex);
            }

            return(list);
        }
Пример #2
0
        public static Size_S GetBase(Size_Special item, float pay)
        {
            Size_S Size_S = new Size_S()
            {
                Id            = item.Id,
                Code          = item.Code,
                GlobeCodeList = Split_Hepler.str_to_ints(item.Globe),
                IsEnable      = item.IsEnable,
                Name          = item.Name,
                PayReturn     = pay,
            };

            return(Size_S);
        }