Ejemplo n.º 1
0
    public static TMSTestimonialsEduGist Get(System.Int64 tsId)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;
        TMSTestimonialsEduGist instance;


        instance = new TMSTestimonialsEduGist();

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

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

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
Ejemplo n.º 2
0
    public static TMSTestimonialsEduGist[] Search(System.Int64?tsId, System.String tsName, System.String tsPhotopath, System.String tsTestimonials, System.DateTime?tsDate, System.Int32?tsStatus)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSTestimonialsEduGist_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, tsId, tsName, tsPhotopath, tsTestimonials, tsDate, tsStatus);

        ds = db.ExecuteDataSet(dbCommand);
        ds.Tables[0].TableName = TABLE_NAME;
        return(TMSTestimonialsEduGist.MapFrom(ds));
    }
Ejemplo n.º 3
0
    public static TMSTestimonialsEduGist[] MapFrom(DataSet ds)
    {
        List <TMSTestimonialsEduGist> objects;


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

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

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

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

        // Return collection.
        return(objects.ToArray());
    }
 public static DataSet GetSearch(TMSTestimonialsEduGist searchObject)
 {
     return GetSearch(searchObject.TsId, searchObject.TSName, searchObject.TSPhotopath, searchObject.TSTestimonials, searchObject.TSDate, searchObject.TSStatus);
 }
 public static void Update(TMSTestimonialsEduGist tMSTestimonialsEduGist, DbTransaction transaction)
 {
     tMSTestimonialsEduGist.Update(transaction);
 }
 public static void Update(TMSTestimonialsEduGist tMSTestimonialsEduGist)
 {
     tMSTestimonialsEduGist.Update();
 }
    public static TMSTestimonialsEduGist[] MapFrom(DataSet ds)
    {
        List<TMSTestimonialsEduGist> objects;

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

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

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

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

        // Return collection.
        return objects.ToArray();
    }
    public static TMSTestimonialsEduGist Get(System.Int64 tsId)
    {
        DataSet ds;
        Database db;
        string sqlCommand;
        DbCommand dbCommand;
        TMSTestimonialsEduGist instance;

        instance = new TMSTestimonialsEduGist();

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

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

        instance.MapFrom( ds.Tables[0].Rows[0] );
        return instance;
    }
Ejemplo n.º 9
0
 public static TMSTestimonialsEduGist[] Search(TMSTestimonialsEduGist searchObject)
 {
     return(Search(searchObject.TsId, searchObject.TSName, searchObject.TSPhotopath, searchObject.TSTestimonials, searchObject.TSDate, searchObject.TSStatus));
 }
Ejemplo n.º 10
0
 public static void Update(TMSTestimonialsEduGist tMSTestimonialsEduGist, DbTransaction transaction)
 {
     tMSTestimonialsEduGist.Update(transaction);
 }
Ejemplo n.º 11
0
 public static void Update(TMSTestimonialsEduGist tMSTestimonialsEduGist)
 {
     tMSTestimonialsEduGist.Update();
 }