Created
July 25, 2016 20:01
-
-
Save Fhernd/c81a5337e9fbd3f17bcdfd4bbe19c9aa to your computer and use it in GitHub Desktop.
Herencia clase Comida. [OrtizOL]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Comida : IEquatable<Comida> | |
{ | |
public virtual bool Equals(Comida otroObjeto) | |
{ | |
throw new NotImplementedException(); | |
} | |
} | |
public class ComidaCocinada : Comida, IEquatable<ComidaCocinada> | |
{ | |
public virtual bool Equals(ComidaCocinada otroObjeto) | |
{ | |
throw new NotImplementedException(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment