Exemple #1
0
 public void UpdateHighSchoolType(HighSchoolType highSchoolType)
 {
     highSchoolTypeRepository.Update(highSchoolType);
 }
Exemple #2
0
 public void DeleteHighSchoolType(HighSchoolType highSchoolType)
 {
     highSchoolTypeRepository.Delete(highSchoolType);
 }
Exemple #3
0
 public void CreateHighSchoolType(HighSchoolType highSchoolType)
 {
     highSchoolTypeRepository.Add(highSchoolType);
 }