コード例 #1
0
        public Customer CustomerIdentifiedAs(string anIdentificationType, string anIdentificationNumber)
        {
            _customerSystem = new PersistentCustomerSystem(_session);

            return(_customerSystem.CustomerIdentifiedAs(anIdentificationType, anIdentificationNumber));
        }
コード例 #2
0
 public PersistentErpSystem()
 {
     _customerSystem = new PersistentCustomerSystem(this);
     _supplierSystem = new PersistentSupplierSystem(this);
 }