public TimeSchduleItem(Wlst.client.HolidayWeekSetInfo.HolidaySchduleTime timeInfo)
 {
     this.Id          = timeInfo.Id;
     this.Name        = timeInfo.Name;
     this.Description = timeInfo.Description;
     foreach (var t in timeInfo.Schdules)
     {
         this.Schdules.Add(new TimeSchduleItemItme(t));
     }
 }
        public Wlst.client.HolidayWeekSetInfo.HolidaySchduleTime BackToSchdule()
        {
            var info = new Wlst.client.HolidayWeekSetInfo.HolidaySchduleTime()
            {
                Description = this.Description,
                Id          = this.Id,
                Name        = this.Name,
                Schdules    = new List <HolidaySchduleTimeItem>()
            };

            foreach (var t in this.Schdules)
            {
                info.Schdules.Add(t.BackToSchdule());
            }
            return(info);
        }