delete statementId from discipline

This commit is contained in:
MaxKarme 2023-04-09 01:14:44 +04:00
parent a174a10be3
commit bfa38abc7b
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@ namespace UniversityContracts.BindingModels
public int Id { get; set; }
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

@ -7,7 +7,6 @@ namespace UniversityContracts.ViewModels
public int Id { get; set; }
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();
}
}