Написаны Contracts.SearchModels для Поставщика

This commit is contained in:
Danil Markov 2023-04-04 14:08:56 +04:00
parent c4873b8c95
commit 3471ff10b4
5 changed files with 41 additions and 2 deletions

View File

@ -7,7 +7,7 @@ using UniversityContracts.BindingModels;
namespace UniversityContracts.BusinessLogicContracts
{
internal interface IStudentLogic
public interface IStudentLogic
{
bool Create(StudentBindingModel model);
bool Update(StudentBindingModel model);

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class DocumentSearchModel
{
public int? Id { 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 UniversityContracts.SearchModels
{
public class EducationStatusSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.SearchModels
{
public class StudentSearchModel
{
public int? Id { get; set; }
}
}

View File

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