public static BaseList <ServiceRequest> GetServiceRequests(this MultiIDList <BusinessClientServiceRequest> BCSRs) { return(BCSRs.Select(bcsr => bcsr.ServiceRequest).ToBaseList()); }
public static BaseList <Person> GetBusinessClientPeople(this MultiIDList <BusinessClientPerson> BCPs) { return(BCPs.Select(bcp => bcp.Person).ToBaseList()); }
public static BaseList <Service> GetServices(this MultiIDList <ServiceLevelAgreement> SLAs) { return(SLAs.Select(sla => sla.Service).ToBaseList()); }
public static BaseList <FollowUpReport> GetFollowUps(this MultiIDList <IndividualClientFollowUp> ICFUs) { return(ICFUs.Select(icfu => icfu.FollowUp).ToBaseList()); }
public static BaseList <FollowUpReport> GetFollowUps(this MultiIDList <BusinessClientFollowUp> BCFUs) { return(BCFUs.Select(bcfu => bcfu.FollowUp).ToBaseList()); }
public static BaseList <Contract> GetContracts(this MultiIDList <IndividualClientContract> ICCs) { return(ICCs.Select(icc => icc.Contract).ToBaseList()); }
public static BaseList <Contract> GetContracts(this MultiIDList <BusinessClientContract> BCCs) { return(BCCs.Select(bcc => bcc.Contract).ToBaseList()); }
public static BaseList <ServiceRequest> GetServiceRequests(this MultiIDList <IndividualClientServiceRequest> ICSRs) { return(ICSRs.Select(icsr => icsr.ServiceRequest).ToBaseList()); }