Exemple #1
0
        public IActionResult OrgEdit(string id)
        {
            var model = new OrgEditViewModel
            {
                Organization = _DbPortal.GetT_PRT_ORGANIZATIONS_ByOrgID(id),
                OrgEmails    = _DbPortal.GetT_PRT_ORG_EMAIL_RULE_ByOrgID(id)
            };

            //handling insert case
            if (model.Organization == null)
            {
                model.Organization = new T_PRT_ORGANIZATIONS();
            }
            return(View(model));
        }