public int DeleteThreeObjects(string personId)
        {
            int check = 0;

            check += vehicleRepository.DeleteVehicleByOwnerId(personId);
            check += approvalRepository.DeleteApprovalById(personId);
            check += studentRepository.DeleteStudent(personId);
            check += teacherRepository.DeleteTeacher(personId);
            return(check);
        }