Fix the build.
[castle.git] / Experiments / Castle.Igloo / Igloo.Clinic.Domain / DrugCollection.cs
blob6128c5f0b92ad95b5b57360a03ef1cb8e39e01fb
1 using System.Collections.Generic;
3 namespace Igloo.Clinic.Domain
5 public class DrugCollection : List<Drug>
7 public void Remove(long id)
9 Drug drug = this.FindById(id);
10 if (drug != null)
12 base.Remove(drug);
16 public Drug FindById(long id)
18 foreach (Drug drug in this)
20 if (drug.Id.Equals(id))
22 return drug;
25 return null;