コード例 #1
0
        // Get job details for apply job page. 

        public Job GetJobDetails(int Jobid, int Empid)
        {

            DALRecruiterWebsiteManager RequestingJobDetails = new DALRecruiterWebsiteManager();

            Job GotJobDetails = new Job();

            GotJobDetails = RequestingJobDetails.GetJobDetails(Jobid, Empid);

            return GotJobDetails;
        }