public DTOQuotation() { Car = new DTOCar(); Customer = new DTOCustomer(); Status = new DTOQuotationStatus(); Branches = new List <DTOBranch>(); CustomerTypes = new List <DTOCustomerType>(); }
public DTOCustomerExchange() { Car = new DTOCar(); Customer = new DTOCustomer(); Quotations = new List <DTOQuotation>(); }
public DTOCarWithOwner() { Car = new DTOCar(); }