Почти сделан pdf (добавил вспомогательный viewmodel так как C# не умеет в кортежи). Нужно доделать pdf с отправкой на почту и навести красоту (стили, валидацию)
20 lines
454 B
C#
20 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UniversityModels.Models
|
|
{
|
|
public interface IStudentModel : IId
|
|
{
|
|
string Name { get; }
|
|
string Surname { get; }
|
|
DateTime DateOfBirth { get; }
|
|
DateTime DateOfAddmission { get; }
|
|
int StudentCard { get; }
|
|
int? EducationStatusId { get; }
|
|
int UserId { get; }
|
|
}
|
|
}
|