Esempio n. 1
0
 public OutputBase DeleteEmployee(DeleteEducationInput input)
 {
     _employeeRepository.Delete(input.EducationId);
     return(new OutputBase {
         Message = "Employee deleted"
     });
 }
Esempio n. 2
0
 public OutputBase DeleteEduction(DeleteEducationInput input)
 {
     _educationRepository.Delete(input.EducationId);
     return(new OutputBase {
         Message = "Education deleted", Success = true
     });
 }