provider #6

Merged
ker73rus merged 29 commits from provider into main 2023-04-09 03:11:27 +04:00
5 changed files with 41 additions and 2 deletions
Showing only changes of commit 3471ff10b4 - Show all commits

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>