Лена. добавила SearchModels в слой контрактов для 5 этапа

This commit is contained in:
ekallin 2024-04-17 18:43:37 +04:00
parent 6e7d7a8dfd
commit 660fd6cf29
5 changed files with 57 additions and 1 deletions

View File

@ -8,7 +8,6 @@
<ItemGroup>
<Folder Include="StoragesContracts\" />
<Folder Include="SearchModels\" />
<Folder Include="ViewModels\" />
<Folder Include="BusinessLogicsContracts\" />
</ItemGroup>

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.SearchModels
{
public class MedicamentSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.SearchModels
{
public class ProcedureSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.SearchModels
{
public class RecieptSearchModel
{
public int? Id { get; set; }
public int? CountProcedures { get; set; }
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.SearchModels
{
public class SuretorSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
public DateTime? BirthDay { get; set; }
}
}