public ClientAndCustomerInformation(CffCustomerInformation cffCustomerInformation, CffClientInformation cffClientInformation, CffCustomerContact cffDefaultCustContact, CffMgtDetails cffMgtDetails) { this.cffCustomerInformation = cffCustomerInformation; this.cffClientInformation = cffClientInformation; this.cffDefaultCustContact = cffDefaultCustContact; this.cffMgtDetails = cffMgtDetails; }
public IList <CffCustomerContact> BuildAll() { IList <CffCustomerContact> contacts = new List <CffCustomerContact>(); while (!reader.IsNull && reader.Read()) { CffCustomerContact contact = Build(); contacts.Add(contact); } return(contacts); }