static void Main(string[] args)
        {
            Console.WriteLine("Welcome to Animal feeding Calculatore");
            Console.WriteLine("Press enter to get Total cost involved to feed all the animals at zoo.");
            Console.ReadLine();

            PerDayCalculator pc = new PerDayCalculator();
            double           d  = pc.CalculatePerDayRate();

            Console.WriteLine("Total cost for the animals currently at the zoo : " + d);
            Console.ReadLine();
        }
Example #2
0
 public void Setup()
 {
     _perDayCalculator = new PerDayCalculator();
     fd = new FoodCalculator();
 }