public void deleteLocationType(int locationTypeId) { LocationTypes.Remove((from l in LocationTypes where l.ID == locationTypeId select l).FirstOrDefault()); }
public void deleteLocationType(LocationType locationType) { LocationTypes.Remove(locationType); }