Exemplo n.º 1
0
 public bool Save(Students students)
 {
     try
     {
         _repository.Add(students);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
     return(true);
 }
Exemplo n.º 2
0
 public bool Save(Subject subject)
 {
     try
     {
         _repository.Add(subject);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
     return(true);
 }