diff --git a/Hotel/HotelContracts/SearchModels/ConferenceBookingSearchModel.cs b/Hotel/HotelContracts/SearchModels/ConferenceBookingSearchModel.cs new file mode 100644 index 0000000..880c490 --- /dev/null +++ b/Hotel/HotelContracts/SearchModels/ConferenceBookingSearchModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HotelContracts.SearchModels +{ + public class ConferenceBookingSearchModel + { + public int? Id { get; set; } + } +} diff --git a/Hotel/HotelContracts/SearchModels/DinnerSearchModel.cs b/Hotel/HotelContracts/SearchModels/DinnerSearchModel.cs new file mode 100644 index 0000000..314f001 --- /dev/null +++ b/Hotel/HotelContracts/SearchModels/DinnerSearchModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HotelContracts.SearchModels +{ + public class DinnerSearchModel + { + public string? DinnerName { get; set; } = string.Empty; + public int? Id { get; set; } + } +} diff --git a/Hotel/HotelContracts/SearchModels/HeadwaiterSearchModel.cs b/Hotel/HotelContracts/SearchModels/HeadwaiterSearchModel.cs new file mode 100644 index 0000000..0977863 --- /dev/null +++ b/Hotel/HotelContracts/SearchModels/HeadwaiterSearchModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HotelContracts.SearchModels +{ + public class HeadwaiterSearchModel + { + public string? HeadwaiterFIO { get; set; } = string.Empty; + + public string? HeadwaiterPassword { get; set; } = string.Empty; + + public string? HeadwaiterLogin { get; set; } = string.Empty; + public int? Id { get; set; } + } +} diff --git a/Hotel/HotelContracts/SearchModels/RoomSearchModel.cs b/Hotel/HotelContracts/SearchModels/RoomSearchModel.cs new file mode 100644 index 0000000..085418f --- /dev/null +++ b/Hotel/HotelContracts/SearchModels/RoomSearchModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HotelContracts.SearchModels +{ + public class RoomSearchModel + { + public string? RoomName { get; set; } = string.Empty; + public int? Id { get; set; } + } +}