コード例 #1
0
 public GiftCardInfo GetGiftCardInfoByReferenceSOSysNo(int soSysNo, int customerSysNo, GiftCardType internalType, CardMaterialType type)
 {
     return(ObjectFactory <GiftCardProcessor> .Instance.GetGiftCardInfoByReferenceSOSysNo(soSysNo, customerSysNo, internalType, type));
 }
コード例 #2
0
ファイル: GiftCardDA.cs プロジェクト: sanlonezhang/ql
        public GiftCardInfo GetGiftCardInfoByReferenceSOSysNo(int soSysNo, int customerSysNo, GiftCardType internalType, CardMaterialType type)
        {
            DataCommand dc = DataCommandManager.GetDataCommand("GetGiftCardInfoByReferenceSOSysNo");

            dc.SetParameterValue("@ReferenceSOSysNo", soSysNo);
            dc.SetParameterValue("@CustomerSysNo", customerSysNo);
            dc.SetParameterValue("@InternalType", internalType);
            dc.SetParameterValue("@Type", type);

            GiftCardInfo result = dc.ExecuteEntity <GiftCardInfo>();

            return(result);
        }
コード例 #3
0
 internal static GiftCardInfo GetGiftCardInfoByReferenceSOSysNo(int soSysNo, int customerSysNo, GiftCardType internalType, CardMaterialType type)
 {
     return(ObjectFactory <IIMBizInteract> .Instance.GetGiftCardInfoByReferenceSOSysNo(soSysNo, customerSysNo, internalType, type));
 }