Пример #1
0
 public static BaseList <ServiceRequest> GetServiceRequests(this MultiIDList <BusinessClientServiceRequest> BCSRs)
 {
     return(BCSRs.Select(bcsr => bcsr.ServiceRequest).ToBaseList());
 }
Пример #2
0
 public static BaseList <Person> GetBusinessClientPeople(this MultiIDList <BusinessClientPerson> BCPs)
 {
     return(BCPs.Select(bcp => bcp.Person).ToBaseList());
 }
Пример #3
0
 public static BaseList <Service> GetServices(this MultiIDList <ServiceLevelAgreement> SLAs)
 {
     return(SLAs.Select(sla => sla.Service).ToBaseList());
 }
Пример #4
0
 public static BaseList <FollowUpReport> GetFollowUps(this MultiIDList <IndividualClientFollowUp> ICFUs)
 {
     return(ICFUs.Select(icfu => icfu.FollowUp).ToBaseList());
 }
Пример #5
0
 public static BaseList <FollowUpReport> GetFollowUps(this MultiIDList <BusinessClientFollowUp> BCFUs)
 {
     return(BCFUs.Select(bcfu => bcfu.FollowUp).ToBaseList());
 }
Пример #6
0
 public static BaseList <Contract> GetContracts(this MultiIDList <IndividualClientContract> ICCs)
 {
     return(ICCs.Select(icc => icc.Contract).ToBaseList());
 }
Пример #7
0
 public static BaseList <Contract> GetContracts(this MultiIDList <BusinessClientContract> BCCs)
 {
     return(BCCs.Select(bcc => bcc.Contract).ToBaseList());
 }
Пример #8
0
 public static BaseList <ServiceRequest> GetServiceRequests(this MultiIDList <IndividualClientServiceRequest> ICSRs)
 {
     return(ICSRs.Select(icsr => icsr.ServiceRequest).ToBaseList());
 }