Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement