public ActionResult Print(string id)
        {
            //staffId = staffId.ToUpper();
            var staffDetails = db.GetEmployeeInfoForPrint(id).FirstOrDefault();

            //var empDetails = new StaffDetailViewModel();
            //empDetails = staffDetails;

            return(View(staffDetails));
        }