internal Job getByID(int id)
        {
            Job exists = _repo.getById(id);

            if (exists == null)
            {
                throw new Exception("Invalid Id");
            }
            return(exists);
        }