public static Product CreateProduct(this ProductViewModel model) { var product = new Product(); model.CopyToProduct(product); return(product); }