Создание и заполнение SearchModel
This commit is contained in:
parent
fe36379129
commit
9aacafa007
@ -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; }
|
||||
}
|
||||
}
|
14
Hotel/HotelContracts/SearchModels/DinnerSearchModel.cs
Normal file
14
Hotel/HotelContracts/SearchModels/DinnerSearchModel.cs
Normal file
@ -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; }
|
||||
}
|
||||
}
|
18
Hotel/HotelContracts/SearchModels/HeadwaiterSearchModel.cs
Normal file
18
Hotel/HotelContracts/SearchModels/HeadwaiterSearchModel.cs
Normal file
@ -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; }
|
||||
}
|
||||
}
|
14
Hotel/HotelContracts/SearchModels/RoomSearchModel.cs
Normal file
14
Hotel/HotelContracts/SearchModels/RoomSearchModel.cs
Normal file
@ -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; }
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user