Ejemplo n.º 1
0
        public async Task <IActionResult> ApproveBranches(int id)
        {
            var result = await _approvalRepository.ApproveBranchesAsync(id, _userManager.GetUserName(User));

            return(RedirectToAction(nameof(Branches)));
        }