Пример #1
0
 public static void Update(ScheduleMessges scheduleMessges, DbTransaction transaction)
 {
     scheduleMessges.Update(transaction);
 }
Пример #2
0
 public static void Update(ScheduleMessges scheduleMessges)
 {
     scheduleMessges.Update();
 }
Пример #3
0
        public static ScheduleMessges[] MapFrom(DataSet ds)
        {
            List<ScheduleMessges> objects;

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

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

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

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

            // Return collection.
            return objects.ToArray();
        }
Пример #4
0
 public static ScheduleMessges[] SearchExact(ScheduleMessges searchObject)
 {
     return SearchExact ( searchObject.Id, searchObject.From, searchObject.To, searchObject.Message, searchObject.ScheduleTime, searchObject.Status, searchObject.ORDERBY_FIELD);
 }
Пример #5
0
        public static ScheduleMessges Get(System.Int64 id)
        {
            DataSet ds;
            Database db;
            string sqlCommand;
            DbCommand dbCommand;
            ScheduleMessges instance;

            instance = new ScheduleMessges();

            db = MyDatabase.DB;
            sqlCommand = "[dbo].ScheduleMessges_SELECT";
            dbCommand = db.GetStoredProcCommand(sqlCommand, id);

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

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