public IEnumerable <BlackoutDate> GetAllBlackoutDates()
 {
     return((from b in db.GetTable <BlackoutDate>()
             select b).ToList());
 }
 public IEnumerable <Schedule> GetAllSchedules()
 {
     return((from s in db.GetTable <Schedule>()
             select s).ToList());
 }
 public Baptizer GetBaptizer(int id)
 {
     return(db.GetTable <Baptizer>().SingleOrDefault(b => b.BaptizerID == id));
 }
Exemplo n.º 4
0
 public IEnumerable <ScheduleItem> GetAllScheduleItems()
 {
     return((from i in db.GetTable <ScheduleItem>()
             select i).ToList());
 }
Exemplo n.º 5
0
 public IEnumerable <TestCase> GetAllTestCases()
 {
     return((from b in db.GetTable <TestCase>()
             select b).ToList());
 }
Exemplo n.º 6
0
 public IEnumerable <Favorite> GetAllFavorites()
 {
     return((from f in db.GetTable <Favorite>()
             select f).ToList());
 }