Пример #1
0
        public string Create(CustomerValue Value)
        {
            var customer = new Customer(this.CustomerRepository);

            this.CustomerRepository.CreateCustomer(Value);
            return Value.CustomerID;
        }
Пример #2
0
 public CustomerRp Convert(Customer Entity)
 {
     var value =  Entity.Export();
     return this.MappingEngine.Map<CustomerRp>(value);
 }