Exemplo n.º 1
0
    private void BindPGOfferList()
    {
        IOffer OfferProductGroups            = CurrentRequest.Resolver.Resolve <IOffer>();
        string Errormsg                      = string.Empty;
        AMSResult <List <string> > amsresult = new AMSResult <List <string> >();

        amsresult = OfferProductGroups.GetOfferPGs(iOfferID_CDS);
        if ((amsresult.ResultType == AMSResultType.Success))
        {
            hdnProductList.Value = amsresult.Result[0].ToString();
            hdnOfferList.Value   = amsresult.Result[1].ToString();
        }
        else
        {
            // Send(Copient.PhraseLib.Lookup(amsresult.MessageString, LanguageID));
        }
    }