コード例 #1
0
ファイル: frmCreateIncident.cs プロジェクト: anneilb/ce-dev
        private bool IsSelectedProductRegistered()
        {
            bool blnResult;

            blnResult = RegistrationDB.ProductRegistered((int)(cboCustomers.SelectedValue),
                                                         (string)cboProducts.SelectedValue);

            if (!blnResult)
            {
                Validator.ShowError("The selected product is not registered for this customer");
            }

            return(blnResult);
        }