public Customer CustomerIdentifiedAs(string anIdentificationType, string anIdentificationNumber) { _customerSystem = new PersistentCustomerSystem(_session); return(_customerSystem.CustomerIdentifiedAs(anIdentificationType, anIdentificationNumber)); }
public PersistentErpSystem() { _customerSystem = new PersistentCustomerSystem(this); _supplierSystem = new PersistentSupplierSystem(this); }