private int deliveryPerson=0;
private int accountant=2;
public void Function(int a)
Console.WriteLine("Serve the food");
Console.WriteLine("Clean the desk");
Console.WriteLine("Generate bill");
public Customer():base(1)
Console.WriteLine("The order must made at the counter section");
Console.WriteLine("The bill should paid at the accountant");
Console.WriteLine("After paying the bill the staff will deliver the food");
public static void Main()
Customer c=new Customer();