Exemplo n.º 1
0
        public ActionResult DeleteFundsource(string Id)
        {
            int fundSourceId = DecryptQueryString(Id);

            if (fundSourceId < 1)
            {
                return(RedirectToAction("FundSourceLookUp"));
            }

            ResultDto resultDto = _fundSourceService.Delete(fundSourceId, UserInfo.UserID);

            TempData["Result"] = resultDto;

            return(RedirectToAction("FundSourceLookUp"));
        }