Example #1
0
        public Landing_Table_Log New_Log_Record(int LandingTableId)
        {
            var o = new Landing_Table_Log();

            o.Landing_Table_Id = LandingTableId;
            GetConnection().Insert(o);

            return(o);
        }
Example #2
0
 public void Update_Log(Landing_Table_Log TableLog)
 {
     GetConnection().Update(TableLog);
 }