public void Insert(string BranchID, string UserName, DateTime CreatedDate, string IpAddress, string ComputerName, string AccountName, string DLLName, string SubSystemName, int FunctionID, string FunctionName, string TableName, string Desc, short Lot) { SysTrace item = new SysTrace(); item.BranchID = BranchID; item.UserName = UserName; item.CreatedDate = CreatedDate; item.IpAddress = IpAddress; item.ComputerName = ComputerName; item.AccountName = AccountName; item.DLLName = DLLName; item.SubSystemName = SubSystemName; item.FunctionID = FunctionID; item.FunctionName = FunctionName; item.TableName = TableName; item.Desc = Desc; item.Lot = Lot; item.Save(UserName); }
public bool Destroy(object Id) { return(SysTrace.Destroy(Id) == 1); }
public bool Delete(object Id) { return(SysTrace.Delete(Id) == 1); }