public ActionResult Copy(ReportCopyViewModel vm)//header id
 {
     if (ModelState.IsValid)
     {
         _ReportLineService.CopyReport(vm, User.Identity.Name);
         return(Json(new { success = true }));
     }
     ViewBag.ReporList = _ReportHeaderService.GetReportHeaderList().ToList();
     return(PartialView("_Copy", vm));
 }
        // GET: /ProductMaster/

        public ActionResult Index()
        {
            var ReportHeader = _ReportHeaderService.GetReportHeaderList().ToList();

            return(View(ReportHeader));
        }