Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 public bool Destroy(object Id)
 {
     return(SysTrace.Destroy(Id) == 1);
 }
Exemplo n.º 3
0
 public bool Delete(object Id)
 {
     return(SysTrace.Delete(Id) == 1);
 }