Implementation Interface:?
- The IDrawingAPI interface defines the drawing method (DrawCircle in
this case). Different concrete implementations of this interface will represent
various drawing styles or technologies.
public interface IDrawingAPI
{
void DrawCircle(double x, double y, double radius);
}