public void Insert(Room entity) { RoomDataGateway.Add(entity.Name, entity.Location); }
public IEnumerable <Room> List() { return(RoomDataGateway.List()); }