public Population(IPopulationAttributes attributes) { _entities = new List<IEntity>(); _pregnantEntities = new List<IPregnantEntity>(); if (attributes != null) _attributes = attributes; else throw new ArgumentNullException("PopulationAttributes must not be null!"); }
public IPopulationBuilder AttributesAre(IPopulationAttributes attributes) { throw new NotImplementedException(); }
private PopulationBuilder() { _attributes = PopulationAttributesBuilder.GetBuilder().Build(); }