public static ProductImageModel ToModel(this ProductImage entity)
 {
     return(entity.MapTo <ProductImage, ProductImageModel>());
 }
 public static ProductImage ToProductImage(this ProductImage entity, ProductImage destination)
 {
     return(entity.MapTo(destination));
 }
 public static ProductImageItem ToItem(this ProductImage entity)
 {
     return(entity.MapTo <ProductImage, ProductImageItem>());
 }