コード例 #1
0
 public void deleteLocationType(int locationTypeId)
 {
     LocationTypes.Remove((from l in LocationTypes where l.ID == locationTypeId select l).FirstOrDefault());
 }
コード例 #2
0
 public void deleteLocationType(LocationType locationType)
 {
     LocationTypes.Remove(locationType);
 }