public async Task DeleteInstructorAsync(string instructorId) { try { await repository.DeleteInstructorAsync(instructorId); await SaveAndReturn(null); } catch (Exception e) { throw e; } }