Example #1
0
        public IActionResult ApproveFirstApproval(int id, string remarks)
        {
            var UserId = int.Parse(HttpContext.Session.GetString("UserId"));

            _Services.ApproveFirstApproval(id, remarks, UserId);
            return(RedirectToAction("Index"));
        }