public Pool FindSameDayPool(Pool pool) { return(Pools.Find(p => p.DayOfWeek == pool.DayOfWeek && pool.IsLowPool != p.IsLowPool)); }
public Pool FindSameLevelPool(Pool pool) { return(Pools.Find(p => p.DayOfWeek != pool.DayOfWeek && pool.IsLowPool == p.IsLowPool)); }
public List <Pool> FindMondayPools() { return(Pools.FindAll(p => p.DayOfWeek == DayOfWeek.Monday)); }