예제 #1
0
 public Room(string roomNumber, RoomType roomType, BedType bedType, decimal rate, RoomStatus roomStatus, string notes)
 {
     RoomNumber = roomNumber;
     RoomType   = roomType;
     BedType    = bedType;
     Rate       = rate;
     RoomStatus = roomStatus;
     Notes      = notes;
 }
예제 #2
0
 public Room(string roomNumber, RoomType roomType, BedType bedType, decimal rate, RoomStatus roomStatus) : this(roomNumber, roomType, bedType, rate, roomStatus, null)
 {
 }