Beispiel #1
0
 /// <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));
 }
Beispiel #2
0
 /// <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));
 }