Beispiel #1
0
        public void AddUp(DanhMucDichVuTheoDonVi danhmucdvtheodv)
        {
            var dvtheodv = this._DanhMucDichVuTheoDonViRepository.GetSingleByCondition(x => x.IDDichVu == danhmucdvtheodv.IDDichVu && x.MaDonVi == danhmucdvtheodv.MaDonVi);

            if (dvtheodv == null)
            {
                this._DanhMucDichVuTheoDonViRepository.Add(danhmucdvtheodv);
            }
            else
            {
                var term = dvtheodv.RowIDDichVuTheoDonVi;
                DanhMucDichVuTheoDonVi newdmdv = new DanhMucDichVuTheoDonVi();
                newdmdv = dvtheodv;
                newdmdv.RowIDDichVuTheoDonVi = term;

                this._DanhMucDichVuTheoDonViRepository.Update(newdmdv);
            }
        }
Beispiel #2
0
 public void Update(DanhMucDichVuTheoDonVi DanhMucDichVuTheoDonVi)
 {
     _DanhMucDichVuTheoDonViRepository.Update(DanhMucDichVuTheoDonVi);
 }