public static CustomerAttributeValue ToEntity(this CustomerAttributeValueModel model, CustomerAttributeValue destination)
 {
     return(model.MapTo(destination));
 }
 public static CustomerAttributeValue ToEntity(this CustomerAttributeValueModel model)
 {
     return(model.MapTo <CustomerAttributeValueModel, CustomerAttributeValue>());
 }