public void RegisterGeneralHouse()
 {
     HouseholdRegistry.RegisterHousehold(Constants.GeneralHouseholdKey, "General Information",
                                         HouseholdKeyType.General, _inputDataLogger, "General", null, null);
 }
 public void RegisterHousehold([NotNull] HouseholdKey householdKey, [NotNull] string name, HouseholdKeyType type,
                               [NotNull] string description, [CanBeNull] string houseName, [CanBeNull] string houseDescription)
 {
     HouseholdRegistry.RegisterHousehold(householdKey, name, type, _inputDataLogger, description, houseName, houseDescription);
 }