public static void Resize(Photo photo) { Console.WriteLine("Resize photo"); }
public static void ApplyBrightness(Photo photo) { Console.WriteLine("Apply brightness"); }
public static void ApplyContrast(Photo photo) { Console.WriteLine("Apply contrast"); }
public void ApplyBrightness(Photo photo) { Console.WriteLine("Brightness applied to photo"); }
public void ApplySharp(Photo photo) { Console.WriteLine("Sharpness applied to photo"); }
public void ApplyContrast(Photo photo) { Console.WriteLine("Contrast applied to photo"); }
static void RemoveRedEyeFilter(Photo photo) { Console.WriteLine("Remove red eye filter applied"); }