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