예제 #1
0
        public static V_BusinessProxy N2_BusinessProxy(MoneyRemittance orgObj)
        {
            Mapper.CreateMap <MoneyRemittance, V_BusinessProxy>();
            V_BusinessProxy dstObj = Mapper.Map <MoneyRemittance, V_BusinessProxy>(orgObj);

            dstObj.BankName = orgObj.RemitterBank;
            return(dstObj);
        }
예제 #2
0
        public static V_BusinessProxy N2_BusinessProxy(BankDraft orgObj)
        {
            Mapper.CreateMap <BankDraft, V_BusinessProxy>();
            V_BusinessProxy dstObj = Mapper.Map <BankDraft, V_BusinessProxy>(orgObj);

            dstObj.BankName = orgObj.RemitterBank;
            return(dstObj);
        }