2 changed files with 13 additions and 10 deletions
@ -1,14 +1,18 @@ |
|||
namespace ConsoleApp1.Animals |
|||
{ |
|||
internal interface IMealContainer |
|||
internal interface IMealContainer: IMealReceiver, IMealProvider |
|||
{ |
|||
} |
|||
|
|||
internal interface IMealProvider |
|||
{ |
|||
int GetAMeal(); |
|||
void ReturnAMeal(); |
|||
} |
|||
|
|||
|
|||
internal interface IMealReceiver |
|||
{ |
|||
int PutAMeal(int iCount); |
|||
void PutAMeal(int iCount); |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue