示例#1
0
        // GET: Product/Create
        public ActionResult Create()
        {
            var model = new RfpProduct();

            ViewData["Types"] = _productTypeFacade.GetAll();
            ViewData["Orgs"]  = _organizationFacade.GetAll();
            return(View(model));
        }
示例#2
0
        // GET: Organization
        public ActionResult Index()
        {
            var orgs = _organizationFacade.GetAll();

            return(View(orgs));
        }