public AppointmentDTO(long id, DateTime beginning, DateTime end, RoomDTO room) { Id = id; Beginning = beginning; End = end; Room = room; }
public EquipmentDTO(string name, string type, string description, RoomDTO room) { Type = type; Description = description; Name = name; Room = room; }
public MedicalAppointmentDTO(long id, DateTime beginning, DateTime end, RoomDTO room, MedicalAppointmentType type, GuestDTO patient, IEnumerable <DoctorDTO> doctors) : base(id, beginning, end, room) { Type = type; Patient = patient; Doctors = doctors; }
public InventoryManagementDTO(DateTime beginning, DateTime end, RoomDTO room) { Beginning = beginning; End = end; Room = room; Equipment = new List <EquipmentDTO>(); }
public InventoryManagementDTO(long id, DateTime beginning, DateTime end, RoomDTO room, List <EquipmentDTO> equipment, RoomDTO roomTo) { Id = id; Beginning = beginning; End = end; Room = room; Equipment = equipment; RoomTo = roomTo; }
public RenovationDTO(DateTime beginning, DateTime end, RoomDTO room, string type, RoomType newType) : base(beginning, end, room) { Type = type; NewType = newType; }
public AppointmentDTO(DateTime beginning, DateTime end, RoomDTO room) { Beginning = beginning; End = end; Room = room; }