Ejemplo n.º 1
0
        /// <summary>
        /// To List Land Code Values details.
        /// </summary>
        /// <returns>Returns typed dataset containing the entire land code values deatils </returns>
        public static F36033LandCodesValuesData F36033_ListLandCodeValues()
        {
            F36033LandCodesValuesData landCodesValuesData = new F36033LandCodesValuesData();
            Hashtable ht = new Hashtable();

            Utility.LoadDataSet(landCodesValuesData.ListLandCodeValueDetails, "f36033_pclst_LandCodeValue", ht);
            return(landCodesValuesData);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// F36033_s the type of the list neighborhood.
        /// </summary>
        /// <param name="rollYear">The roll year.</param>
        /// <returns>ListNeighborhoodType -- containing the Neighborhood Type</returns>
        public static F36033LandCodesValuesData F36033_ListNeighborhoodType(int rollYear)
        {
            F36033LandCodesValuesData landCodesValuesData = new F36033LandCodesValuesData();
            Hashtable ht = new Hashtable();

            ht.Add("@RollYear", rollYear);
            Utility.LoadDataSet(landCodesValuesData.ListNeighborhoodType, "f35100_pclst_NeighborhoodType", ht);
            return(landCodesValuesData);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// To List Individual Land Code Values Items.
        /// </summary>
        /// <returns>Returns Typed Dataset containing following datatable:
        /// GetAppRollYear -- containing the application roll year
        /// ListNeighborhoodType -- containing the Neighborhood Type
        /// ListLandCode -- containing the LandCode
        /// ListUnitType -- containing the Unit type
        /// </returns>
        public static F36033LandCodesValuesData F36033_ListIndividualLandCodeValuesItems()
        {
            F36033LandCodesValuesData landCodesValuesData = new F36033LandCodesValuesData();
            Hashtable ht = new Hashtable();

            string[] optionalParameter = new string[] { landCodesValuesData.GetAppRollYear.TableName, landCodesValuesData.ListNeighborhoodType.TableName, landCodesValuesData.ListLandCode.TableName, landCodesValuesData.ListUnitType.TableName };
            Utility.LoadDataSet(landCodesValuesData, "f36033_pclst_LoadLandCodeValuesItems", ht, optionalParameter);
            return(landCodesValuesData);
        }