public IAppointmentFactory WithOfficeRoom(int number, OfficeRoomType officeRoomType)
 {
     this.officeRoom = new OfficeRoom(false, number, officeRoomType);
     return(this);
 }
예제 #2
0
 public OfficeRoomFactory WithOfficeRoomType(OfficeRoomType officeRoomType)
 {
     this.officeRoomType = officeRoomType;
     return(this);
 }