Ejemplo n.º 1
0
 public void Save(Blocked_timeslot slot)
 {
     MySqlCommand command = this._db.CreateCommand();
     command.CommandText = "INSERT INTO blocked_timeslot (user_id, daytime_id, hardblock) VALUES (?user_id, ?daytime_id, ?hardblock)";
     command.Parameters.Add(new MySqlParameter("?user_id", MySqlDbType.Int32)).Value = slot.User.Id;
     command.Parameters.Add(new MySqlParameter("?daytime_id", MySqlDbType.Int32)).Value = slot.Daytime.Id;
     if (slot.Hardblock)
     {
         command.Parameters.Add(new MySqlParameter("?hardblock", MySqlDbType.Int16)).Value = 1;
     }
     else
     {
         command.Parameters.Add(new MySqlParameter("?hardblock", MySqlDbType.Int16)).Value = 0;
     }
     this._db.OpenConnection();
     this._db.ExecuteCommand(command);
     this._db.CloseConnection();
 }
Ejemplo n.º 2
0
        public void Save(Blocked_timeslot slot)
        {
            MySqlCommand command = this._db.CreateCommand();

            command.CommandText = "INSERT INTO blocked_timeslot (user_id, daytime_id, hardblock) VALUES (?user_id, ?daytime_id, ?hardblock)";
            command.Parameters.Add(new MySqlParameter("?user_id", MySqlDbType.Int32)).Value    = slot.User.Id;
            command.Parameters.Add(new MySqlParameter("?daytime_id", MySqlDbType.Int32)).Value = slot.Daytime.Id;
            if (slot.Hardblock)
            {
                command.Parameters.Add(new MySqlParameter("?hardblock", MySqlDbType.Int16)).Value = 1;
            }
            else
            {
                command.Parameters.Add(new MySqlParameter("?hardblock", MySqlDbType.Int16)).Value = 0;
            }
            this._db.OpenConnection();
            this._db.ExecuteCommand(command);
            this._db.CloseConnection();
        }
Ejemplo n.º 3
0
 protected Blocked_timeslot ProcessRow(MySqlDataReader Reader, Blocked_timeslot blockedTimeSlot)
 {
     blockedTimeSlot.Daytime_id = Reader.GetInt32(0);
     blockedTimeSlot.Hardblock = Reader.GetBoolean(1);
     return blockedTimeSlot;
 }
Ejemplo n.º 4
0
 protected Blocked_timeslot ProcessRow(MySqlDataReader Reader, Blocked_timeslot blockedTimeSlot)
 {
     blockedTimeSlot.Daytime_id = Reader.GetInt32(0);
     blockedTimeSlot.Hardblock  = Reader.GetBoolean(1);
     return(blockedTimeSlot);
 }