Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Created October 7, 2020 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carmeleve/c0253cf5bbc09464f537b469689ad6a1 to your computer and use it in GitHub Desktop.
Save carmeleve/c0253cf5bbc09464f537b469689ad6a1 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Text;
namespace DesignPatterns.Adapter
{
public interface IMammal
{
IChild GiveBirth();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment