provider #6

Merged
ker73rus merged 29 commits from provider into main 2023-04-09 03:11:27 +04:00
3 changed files with 17 additions and 3 deletions
Showing only changes of commit 1b880640e5 - Show all commits

View File

@ -3,10 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UniversityModels.Models;
namespace UniversityContracts.BindingModels
{
internal class DocumentBindingModel
public class DocumentBindingModel : IDocumentModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public DateTime Date { get; set; }
}
}

View File

@ -3,10 +3,13 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UniversityModels.Models;
namespace UniversityContracts.BindingModels
{
internal class EducationStatusBindingModel
public class EducationStatusBindingModel : IEducationStatusModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}

View File

@ -3,10 +3,17 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UniversityModels.Models;
namespace UniversityContracts.BindingModels
{
internal class StudentBindingModel
public class StudentBindingModel : IStudentModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Surname { get; set; } = string.Empty;
public DateTime DateOfBirth { get; set; }
public int StudentCard { get; set; }
public int EducationStatusId { get; set; }
}
}