public void add_food()
        {
            var fs = new FoodScheduleDictionary();

            //fs.Add("key")
            Assert.Fail("Test not done");
        }
예제 #2
0
 public Bee(Bee other)
 {
     this.Name         = other.Name;
     this.Age          = other.Age;
     this.Category     = other.Category;
     this.Gender       = other.Gender;
     this.CountOfLegs  = other.CountOfLegs;
     this.beeSpecies   = other.beeSpecies;
     this.Id           = other.Id;
     this.foodSchedule = other.GetFoodSchedule();
 }
예제 #3
0
 public Cat(Cat other)
 {
     this.Name         = other.Name;
     this.Age          = other.Age;
     this.Category     = other.Category;
     this.Gender       = other.Gender;
     this.TeethCount   = other.TeethCount;
     this.Breed        = other.breed;
     this.Id           = other.Id;
     this.foodSchedule = other.GetFoodSchedule();
 }
예제 #4
0
 public Butterfly(Butterfly other)
 {
     this.Name         = other.Name;
     this.Age          = other.Age;
     this.Category     = other.Category;
     this.Gender       = other.Gender;
     this.CountOfLegs  = other.CountOfLegs;
     this.wingColor    = other.wingColor;
     this.Id           = other.Id;
     this.foodSchedule = other.GetFoodSchedule();
 }
예제 #5
0
 public Bee() : base()
 {
     foodSchedule = new FoodScheduleDictionary();
     //AddTestItems();
 }
예제 #6
0
 public Cat() : base()
 {
     foodSchedule = new FoodScheduleDictionary();
 }
예제 #7
0
 public Butterfly() : base()
 {
     foodSchedule = new FoodScheduleDictionary();
 }
예제 #8
0
 //Default constructor
 public Dog() : base()
 {
     //foodSchedule= new FoodSchedule();
     foodSchedule = new FoodScheduleDictionary();
 }