BKI_DichVuMatDat.US.US_GD_TRANG_THAI_LAO_DONG.thay_doi_trang_thai_lao_dong C# (CSharp) Method

thay_doi_trang_thai_lao_dong() public method

public thay_doi_trang_thai_lao_dong ( decimal ip_dc_id_nhan_vien, decimal ip_dc_id_trang_thai_chuyen, System.DateTime ip_dat_ngay_lap, string ip_str_nguoi_lap ) : void
ip_dc_id_nhan_vien decimal
ip_dc_id_trang_thai_chuyen decimal
ip_dat_ngay_lap System.DateTime
ip_str_nguoi_lap string
return void
        public void thay_doi_trang_thai_lao_dong(decimal ip_dc_id_nhan_vien
            , decimal ip_dc_id_trang_thai_chuyen
            , DateTime ip_dat_ngay_lap
            , string ip_str_nguoi_lap)
        {
            CStoredProc v_sp = new CStoredProc("pr_thay_doi_trang_thai_lao_dong");
            v_sp.addDecimalInputParam("@ip_dc_id_nhan_vien", ip_dc_id_nhan_vien);
            v_sp.addDecimalInputParam("@ip_dc_id_trang_thai_chuyen", ip_dc_id_trang_thai_chuyen);
            v_sp.addDatetimeInputParam("@ip_dat_ngay_lap", ip_dat_ngay_lap);
            v_sp.addNVarcharInputParam("@ip_str_nguoi_lap", ip_str_nguoi_lap);

            v_sp.ExecuteCommand(this);
        }