add statemebts in discipline

This commit is contained in:
MaxKarme 2023-04-09 01:06:58 +04:00
parent 47ca968924
commit a174a10be3
3 changed files with 3 additions and 1 deletions

View File

@ -8,5 +8,6 @@ namespace UniversityContracts.BindingModels
public string Name { get; set; } = String.Empty;
public string Department { get; set; } = String.Empty;
public int StatementId { get; set; }
public Dictionary<int, IStatementModel> DisciplineStatements { get; set; } = new();
}
}

View File

@ -8,5 +8,6 @@ namespace UniversityContracts.ViewModels
public string Name { get; set; } = String.Empty;
public string Department { get; set; } = String.Empty;
public int StatementId { get; set; }
public Dictionary<int, IStatementModel> DisciplineStatements { get; set; } = new();
}
}

View File

@ -4,6 +4,6 @@
{
String Name { get; }
String Department { get; }
int StatementId { get; }
Dictionary<int, IStatementModel> DisciplineStatements { get; }
}
}