示例#1
0
        public void Insert(string NguoiTao, DateTime NgayTao)
        {
            TLichsuHieuchinhDonthuoc item = new TLichsuHieuchinhDonthuoc();

            item.NguoiTao = NguoiTao;

            item.NgayTao = NgayTao;


            item.Save(UserName);
        }
示例#2
0
        public void Update(long IdHieuchinh, string NguoiTao, DateTime NgayTao)
        {
            TLichsuHieuchinhDonthuoc item = new TLichsuHieuchinhDonthuoc();

            item.MarkOld();
            item.IsLoaded = true;

            item.IdHieuchinh = IdHieuchinh;

            item.NguoiTao = NguoiTao;

            item.NgayTao = NgayTao;

            item.Save(UserName);
        }
示例#3
0
 public bool Destroy(object IdHieuchinh)
 {
     return(TLichsuHieuchinhDonthuoc.Destroy(IdHieuchinh) == 1);
 }