public IHttpActionResult Post(CustomerRp Model)
        {
            var customers = this.CustomerFactory.BuildCustomers();

            var value = this.CustomerAppService.Convert(Model);

            var id =  customers.Create(value);

            return this.Ok();
        }
 public CustomerValue Convert(CustomerRp Model)
 {
     return this.MappingEngine.Map<CustomerValue>(Model);
 }