kiem_tra_nam_das_thuong_hs_bo_sung() public method

public kiem_tra_nam_das_thuong_hs_bo_sung ( decimal ip_dc_nam, string &op_str_nam_da_thuong_hs_bo_sung ) : void
ip_dc_nam decimal
op_str_nam_da_thuong_hs_bo_sung string
return void
        private bool kiem_tra_nam_da_thuong_hs_bo_sung(decimal ip_dc_nam)
        {
            DS_GD_QUY_TIEN_THUONG v_ds = new DS_GD_QUY_TIEN_THUONG();
            US_GD_QUY_TIEN_THUONG v_us = new US_GD_QUY_TIEN_THUONG();

            string op_str_nam_da_thuong_hs_bo_sung = "N"; //Y: da thuong va N: chua thuong
            v_us.kiem_tra_nam_das_thuong_hs_bo_sung(ip_dc_nam, ref op_str_nam_da_thuong_hs_bo_sung);

            if (op_str_nam_da_thuong_hs_bo_sung == "Y")
            {
                return true;
            }
            else
            {
                return false;
            }
        }