12 lines
285 B
C#
12 lines
285 B
C#
|
namespace University.DataModels.Models
|
|||
|
{
|
|||
|
public interface IStudentModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Familia { get; }
|
|||
|
string Patronomyc { get; }
|
|||
|
public string PhoneNumber { get; }
|
|||
|
IPlanOfStudyModel planOfStudy { get; }
|
|||
|
}
|
|||
|
}
|