Example #1
0
        // GET: Customer
        public ActionResult NewCustomer()
        {
            //Get Industry Category
            List <IndustryCategory> industryCategory = new List <IndustryCategory>();

            industryCategory = _IndustryCategory.GetIndustryCategoryList();

            CustomerDetails customerDet = new CustomerDetails();

            customerDet.IndustryCategoryList = industryCategory;
            return(View(customerDet));
        }
        // GET: Company
        public ActionResult NewCompany()
        {
            List <IndustryCategory> industryCategory = new List <IndustryCategory>();

            industryCategory = _IndustryCategory.GetIndustryCategoryList();

            CompanyDetails companyDet = new CompanyDetails();

            companyDet.IndustryCategoryList = industryCategory;

            return(View(companyDet));
        }
        //LeadSource End

        //Industry Category Start
        public ActionResult ViewIndustryCategory()
        {
            List <IndustryCategory> industryCategory = new List <IndustryCategory>();

            industryCategory = _IndustryCategory.GetIndustryCategoryList();
            return(View(industryCategory));
        }