Ejemplo n.º 1
0
        public void RemoveCalendarEntry(int calendarEntryID)
        {
            log.LogStart();
            string sql = string.Format("delete from CalendarEntry where CalendarEntryID = {0}", calendarEntryID);

            db.ExecuteCommand(sql);
        }
Ejemplo n.º 2
0
        public void AddMemberTag(int memberId, string tagName)
        {
            log.LogStart();
            string sql = string.Format("insert into Member_Tag values ({0}, {1})", memberId, GetTagId(tagName));

            db.ExecuteCommand(sql);
        }
Ejemplo n.º 3
0
 public void TruncateRawRunLog()
 {
     db.ExecuteCommand("truncate table RawRunLog");
 }