Skip to content

Instantly share code, notes, and snippets.

@carmeleve
Created October 7, 2020 09:51
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/7a97bddce1250e8e3f1f00877689b608 to your computer and use it in GitHub Desktop.
Save carmeleve/7a97bddce1250e8e3f1f00877689b608 to your computer and use it in GitHub Desktop.
namespace DesignPatterns.Adapter
{
public interface IChild
{
void Cry();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment