|
| 1 | +using AnimalCentre.Entities; |
| 2 | +using AnimalCentre.Entities.Animals; |
| 3 | +using AnimalCentre.Entities.Procedures; |
| 4 | +using AnimalCentre.Models.Contracts; |
| 5 | +using System; |
| 6 | +using System.Collections.Generic; |
| 7 | +using System.Linq; |
| 8 | +using System.Text; |
| 9 | + |
| 10 | +namespace AnimalCentre.Core |
| 11 | +{ |
| 12 | + public class AnimalCentre |
| 13 | + { |
| 14 | + private Hotel hotel; |
| 15 | + private Chip chip; |
| 16 | + private DentalCare dental; |
| 17 | + private Fitness fitness; |
| 18 | + private NailTrim nailTrim; |
| 19 | + private Play play; |
| 20 | + private Vaccinate vaccinate; |
| 21 | + |
| 22 | + private Dictionary<string, List<string>> adopted; |
| 23 | + public IReadOnlyDictionary<string, List<string>> Adopted { get; } |
| 24 | + |
| 25 | + public AnimalCentre() |
| 26 | + { |
| 27 | + hotel = new Hotel(); |
| 28 | + adopted = new Dictionary<string, List<string>>(); |
| 29 | + Adopted = adopted; |
| 30 | + chip = new Chip(); |
| 31 | + dental = new DentalCare(); |
| 32 | + fitness = new Fitness(); |
| 33 | + nailTrim = new NailTrim(); |
| 34 | + play = new Play(); |
| 35 | + vaccinate = new Vaccinate(); |
| 36 | + } |
| 37 | + public string RegisterAnimal(string type, string name, int energy, int happiness, int procedureTime) |
| 38 | + { |
| 39 | + if (hotel.Animals.ContainsKey(name)) |
| 40 | + { |
| 41 | + throw new ArgumentException($"Animal {name} already exist"); |
| 42 | + } |
| 43 | + |
| 44 | + switch (type) |
| 45 | + { |
| 46 | + case "Cat": hotel.Accommodate(new Cat(name, energy, happiness, procedureTime)); break; |
| 47 | + case "Dog": hotel.Accommodate(new Dog(name, energy, happiness, procedureTime)); break; |
| 48 | + case "Lion": hotel.Accommodate(new Lion(name, energy, happiness, procedureTime)); break; |
| 49 | + case "Pig": hotel.Accommodate(new Pig(name, energy, happiness, procedureTime)); break; |
| 50 | + } |
| 51 | + |
| 52 | + return $"Animal {name} registered successfully"; |
| 53 | + |
| 54 | + } |
| 55 | + |
| 56 | + public string Chip(string name, int procedureTime) |
| 57 | + { |
| 58 | + |
| 59 | + if (!hotel.Animals.ContainsKey(name)) |
| 60 | + { |
| 61 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 62 | + } |
| 63 | + var animal = hotel.Animals[name]; |
| 64 | + |
| 65 | + chip.DoService(animal, procedureTime); |
| 66 | + |
| 67 | + return $"{name} had chip procedure"; |
| 68 | + } |
| 69 | + |
| 70 | + public string Vaccinate(string name, int procedureTime) |
| 71 | + { |
| 72 | + if (!hotel.Animals.ContainsKey(name)) |
| 73 | + { |
| 74 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 75 | + } |
| 76 | + var animal = hotel.Animals[name]; |
| 77 | + |
| 78 | + vaccinate.DoService(animal, procedureTime); |
| 79 | + |
| 80 | + return $"{name} had vaccination procedure"; |
| 81 | + } |
| 82 | + |
| 83 | + public string Fitness(string name, int procedureTime) |
| 84 | + { |
| 85 | + if (!hotel.Animals.ContainsKey(name)) |
| 86 | + { |
| 87 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 88 | + } |
| 89 | + var animal = hotel.Animals[name]; |
| 90 | + |
| 91 | + fitness.DoService(animal, procedureTime); |
| 92 | + |
| 93 | + return $"{name} had fitness procedure"; |
| 94 | + } |
| 95 | + |
| 96 | + public string Play(string name, int procedureTime) |
| 97 | + { |
| 98 | + if (!hotel.Animals.ContainsKey(name)) |
| 99 | + { |
| 100 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 101 | + } |
| 102 | + var animal = hotel.Animals[name]; |
| 103 | + |
| 104 | + play.DoService(animal, procedureTime); |
| 105 | + |
| 106 | + return $"{name} was playing for {procedureTime} hours"; |
| 107 | + } |
| 108 | + |
| 109 | + public string DentalCare(string name, int procedureTime) |
| 110 | + { |
| 111 | + if (!hotel.Animals.ContainsKey(name)) |
| 112 | + { |
| 113 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 114 | + } |
| 115 | + var animal = hotel.Animals[name]; |
| 116 | + |
| 117 | + dental.DoService(animal, procedureTime); |
| 118 | + |
| 119 | + return $"{name} had dental care procedure"; |
| 120 | + } |
| 121 | + |
| 122 | + public string NailTrim(string name, int procedureTime) |
| 123 | + { |
| 124 | + if (!hotel.Animals.ContainsKey(name)) |
| 125 | + { |
| 126 | + throw new ArgumentException($"Animal {name} does not exist"); |
| 127 | + } |
| 128 | + var animal = hotel.Animals[name]; |
| 129 | + |
| 130 | + nailTrim.DoService(animal, procedureTime); |
| 131 | + |
| 132 | + return $"{name} had nail trim procedure"; |
| 133 | + } |
| 134 | + |
| 135 | + public string Adopt(string animalName, string owner) |
| 136 | + { |
| 137 | + if (!hotel.Animals.ContainsKey(animalName)) |
| 138 | + { |
| 139 | + throw new ArgumentException($"Animal {animalName} does not exist"); |
| 140 | + } |
| 141 | + var animal = hotel.Animals.Values.First(x => x.Name == animalName); |
| 142 | + if (!Adopted.ContainsKey(owner)) |
| 143 | + { |
| 144 | + adopted.Add(owner, new List<string>()); |
| 145 | + } |
| 146 | + hotel.Adopt(animalName, owner); |
| 147 | + Adopted[owner].Add(animal.Name); |
| 148 | + if (animal.IsChipped) |
| 149 | + { |
| 150 | + return $"{owner} adopted animal with chip"; |
| 151 | + } |
| 152 | + else |
| 153 | + { |
| 154 | + return $"{owner} adopted animal without chip"; |
| 155 | + } |
| 156 | + |
| 157 | + } |
| 158 | + |
| 159 | + public string History(string type) |
| 160 | + { |
| 161 | + switch (type) |
| 162 | + { |
| 163 | + case "Chip": return chip.History(); |
| 164 | + case "Vaccinate": return vaccinate.History(); |
| 165 | + case "Fitness": return fitness.History(); |
| 166 | + case "Play": return play.History(); |
| 167 | + case "NailTrim": return nailTrim.History(); |
| 168 | + case "DentalCare": return dental.History(); |
| 169 | + default: |
| 170 | + return null; |
| 171 | + } |
| 172 | + |
| 173 | + |
| 174 | + } |
| 175 | + |
| 176 | + } |
| 177 | +} |
0 commit comments