/// <summary> /// Retorna una lista de objetos TimespamView /// </summary> /// <param name="date"></param> /// <param name="chekWith"></param> /// <returns></returns> public List <TimespamView> Get_ArrayOfTimes(DateTime date, Boolean chekWith) { if (chekWith) { if (!Date_IsContained(date)) { return(null); } } return(ResourceSchedulingBE.Get_ArrayOfTimes(date, this.TimeStart_timesp, this.TimeEnd_timesp, this.Duration.Value, this.Description)); }
/// <summary> /// Retorna una lista de objetos TimespamView /// </summary> /// <param name="date"></param> /// <returns></returns> public List <TimespamView> Get_ArrayOfTimes(DateTime date) { return(ResourceSchedulingBE.Get_ArrayOfTimes(date, this.TimeStart_timesp, this.TimeEnd_timesp, this.Duration.Value, this.Description)); }