Beispiel #1
0
 public TimeOfDayCollection<TimeOfDay> GetTimeOfDays(Enums.enumStatuses status)
 {
     TimeOfDayCollection<TimeOfDay> _coll = new TimeOfDayCollection<TimeOfDay>(this.ConnectionString);
     ArgumentsList _arg = new ArgumentsList(new ArgumentsListItem("Status", Convert.ToInt32(status).ToString()));
     _coll.LitePopulate(_arg, false, null);
     return _coll;
 }