示例#1
0
        public void NguoiGioiThieu_Insert(NguoiGioiThieuDTO _nguoiGioiThieuDTO)
        {
            List <SqlParameter> sqlParams = new List <SqlParameter> {
                new SqlParameter("@MaNhanVien", _nguoiGioiThieuDTO.MaNhanVien),
                new SqlParameter("@MaChamCong", _nguoiGioiThieuDTO.MaChamCong),
                new SqlParameter("@MaNguoiGioiThieu", _nguoiGioiThieuDTO.MaNguoiGioiThieu)
            };

            base.Procedure("ChiTietNguoiGioiThieu_add", sqlParams);
        }
示例#2
0
 public void NguoiGioiThieuInsert(NguoiGioiThieuDTO _nguoiGioiThieuDTO)
 {
     this._nguoiGioiThieuDAL.NguoiGioiThieu_Insert(_nguoiGioiThieuDTO);
 }