Esempio n. 1
0
        public ActionResult CompanyUsersInfo(string id)
        {
            ViewBag.CompanyId = id;
            ViewBag.RoleBit   = new SelectList(companyUtil.GetRole(), "Value", "Text", 0);
            ViewBag.CountryId = new SelectList(countryUtil.GetCountry(), "Value", "Text", 0);
            ViewBag.StateId   = new SelectList(new StateUtil().GetStateSelectList(0), "Value", "Text", 0);
            ViewBag.CityId    = new SelectList(new CityUtil().GetCitySelectList(0), "Value", "Text", 0);

            return(PartialView("CompanyUsersInfo"));
        }