ActiveRecordIntegrationSample.Controllers.HomeController.Index C# (CSharp) Method

Index() public method

public Index ( ) : void
return void
		public void Index()
		{
			PropertyBag["categories"] = Category.FindAll();
			PropertyBag["prodlicenses"] = ProductLicense.FindAll();
			PropertyBag["accounts"] = Account.FindAll();
			PropertyBag["accountpermissions"] = AccountPermission.FindAll();
		}
	}
HomeController