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