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


        instance = new TMSSEOManagement();

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

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

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
コード例 #2
0
    public static TMSSEOManagement[] Search(System.Int64?seoId, System.String seoPageName, System.String seoTitle, System.String seoKeywords, System.String seoDescription, System.String seoMetaType, System.DateTime?seoDate, System.String seoAddedyBy, System.Int64?seoAddedById, System.Int32?seoStatus)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSSEOManagement_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, seoId, seoPageName, seoTitle, seoKeywords, seoDescription, seoMetaType, seoDate, seoAddedyBy, seoAddedById, seoStatus);

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


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

        // 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_SEOManagement] in DataSet.");
        }

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

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

        // Return collection.
        return(objects.ToArray());
    }
コード例 #4
0
 public static TMSSEOManagement[] Search(TMSSEOManagement searchObject)
 {
     return(Search(searchObject.SEOId, searchObject.SEOPageName, searchObject.SEOTitle, searchObject.SEOKeywords, searchObject.SEODescription, searchObject.SEOMetaType, searchObject.SEODate, searchObject.SEOAddedyBy, searchObject.SEOAddedById, searchObject.SEOStatus));
 }
コード例 #5
0
 public static void Update(TMSSEOManagement tMSSEOManagement, DbTransaction transaction)
 {
     tMSSEOManagement.Update(transaction);
 }
コード例 #6
0
 public static void Update(TMSSEOManagement tMSSEOManagement)
 {
     tMSSEOManagement.Update();
 }
コード例 #7
0
 public static void Update(TMSSEOManagement tMSSEOManagement, DbTransaction transaction)
 {
     tMSSEOManagement.Update(transaction);
 }
コード例 #8
0
 public static void Update(TMSSEOManagement tMSSEOManagement)
 {
     tMSSEOManagement.Update();
 }
コード例 #9
0
 public static TMSSEOManagement[] Search(TMSSEOManagement searchObject)
 {
     return Search ( searchObject.SEOId, searchObject.SEOPageName, searchObject.SEOTitle, searchObject.SEOKeywords, searchObject.SEODescription, searchObject.SEOMetaType, searchObject.SEODate, searchObject.SEOAddedyBy, searchObject.SEOAddedById, searchObject.SEOStatus);
 }
コード例 #10
0
    public static TMSSEOManagement[] MapFrom(DataSet ds)
    {
        List<TMSSEOManagement> objects;

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

        // 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_SEOManagement] in DataSet.");

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

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

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

        instance = new TMSSEOManagement();

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

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

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