コード例 #1
0
    public static TMSAddressDetails Get(System.Int64 adAddressId)
    {
        DataSet           ds;
        Database          db;
        string            sqlCommand;
        DbCommand         dbCommand;
        TMSAddressDetails instance;


        instance = new TMSAddressDetails();

        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSAddressDetails_SELECT";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, adAddressId);

        // Get results.
        ds = db.ExecuteDataSet(dbCommand);
        // Verification.
        if (ds == null || ds.Tables[0].Rows.Count == 0)
        {
            throw new ApplicationException("Could not get TMSAddressDetails ID:" + adAddressId.ToString() + " from Database.");
        }
        // Return results.
        ds.Tables[0].TableName = TABLE_NAME;

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
コード例 #2
0
    public static TMSAddressDetails[] Search(System.Int64?adAddressId, System.String adPermanentAddress, System.String adOfficeAddress, System.String adCommercialAddress, System.String adOptionalAddress, System.String adLandLineNo, System.String adOfficeNo, System.String adMobileNo, System.String adMobileOptionalNo, System.String adEmailId, System.String adPinCode, System.String adZipCode, System.Int64?adCountryId, System.Int64?adStateId, System.Int64?adCityId, System.DateTime?adAddressDate, System.Int32?adStatus)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSAddressDetails_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, adAddressId, adPermanentAddress, adOfficeAddress, adCommercialAddress, adOptionalAddress, adLandLineNo, adOfficeNo, adMobileNo, adMobileOptionalNo, adEmailId, adPinCode, adZipCode, adCountryId, adStateId, adCityId, adAddressDate, adStatus);

        ds = db.ExecuteDataSet(dbCommand);
        ds.Tables[0].TableName = TABLE_NAME;
        return(TMSAddressDetails.MapFrom(ds));
    }
コード例 #3
0
    public static TMSAddressDetails[] MapFrom(DataSet ds)
    {
        List <TMSAddressDetails> objects;


        // Initialise Collection.
        objects = new List <TMSAddressDetails>();

        // Validation.
        if (ds == null)
        {
            throw new ApplicationException("Cannot map to dataset null.");
        }
        else if (ds.Tables[TABLE_NAME].Rows.Count == 0)
        {
            return(objects.ToArray());
        }

        if (ds.Tables[TABLE_NAME] == null)
        {
            throw new ApplicationException("Cannot find table [dbo].[TMS_AddressDetails] in DataSet.");
        }

        if (ds.Tables[TABLE_NAME].Rows.Count < 1)
        {
            throw new ApplicationException("Table [dbo].[TMS_AddressDetails] is empty.");
        }

        // Map DataSet to Instance.
        foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows)
        {
            TMSAddressDetails instance = new TMSAddressDetails();
            instance.MapFrom(dr);
            objects.Add(instance);
        }

        // Return collection.
        return(objects.ToArray());
    }
コード例 #4
0
    public static TMSAddressDetails[] MapFrom(DataSet ds)
    {
        List<TMSAddressDetails> objects;

        // Initialise Collection.
        objects = new List<TMSAddressDetails>();

        // Validation.
        if (ds == null)
        throw new ApplicationException("Cannot map to dataset null.");
        else if (ds.Tables[TABLE_NAME].Rows.Count == 0)
        return objects.ToArray();

        if (ds.Tables[TABLE_NAME] == null)
        throw new ApplicationException("Cannot find table [dbo].[TMS_AddressDetails] in DataSet.");

        if (ds.Tables[TABLE_NAME].Rows.Count < 1)
        throw new ApplicationException("Table [dbo].[TMS_AddressDetails] is empty.");

        // Map DataSet to Instance.
        foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows)
        {
            TMSAddressDetails instance = new TMSAddressDetails();
            instance.MapFrom(dr);
            objects.Add(instance);
        }

        // Return collection.
        return objects.ToArray();
    }
コード例 #5
0
    public static TMSAddressDetails Get(System.Int64 adAddressId)
    {
        DataSet ds;
        Database db;
        string sqlCommand;
        DbCommand dbCommand;
        TMSAddressDetails instance;

        instance = new TMSAddressDetails();

        db = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSAddressDetails_SELECT";
        dbCommand = db.GetStoredProcCommand(sqlCommand, adAddressId);

        // Get results.
        ds = db.ExecuteDataSet(dbCommand);
        // Verification.
        if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSAddressDetails ID:" + adAddressId.ToString()+ " from Database.");
        // Return results.
        ds.Tables[0].TableName = TABLE_NAME;

        instance.MapFrom( ds.Tables[0].Rows[0] );
        return instance;
    }