public override ResidentCallSummaryBase FindSummaryItems(ResidentRollCall call) { ResidentYearlyCallSummaryByResident summary = ResidentCallSummaryListBase.ConvertAll(x => x as ResidentYearlyCallSummaryByResident).Find(x => x.StudentId == call.StudentId && x.YearNumber == call.YearNumber && x.LocationName == call.LocationName); return(summary); }
public override ResidentCallSummaryBase FindSummaryItems(ResidentRollCall call) { ResidentYearlyCallSummaryByMonth summary = ResidentCallSummaryListBase.ConvertAll(x => x as ResidentYearlyCallSummaryByMonth).Find((x => x.MonthNumber == call.MonthNumber && x.YearNumber == call.YearNumber && x.LocationName == call.LocationName)); return(summary); }