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