예제 #1
0
        private static OrderEntityInfo GetOrderEntityInfo(XElement xe)
        {
            OrderEntityInfo orderEntityInfo = new OrderEntityInfo();

            if (xe != null)
            {
                orderEntityInfo.Entity = GetEntityInfo(xe.Element("Entity"));
                orderEntityInfo.OrderDetailEntities = GetOrderDetailEntities(xe.Element("OrderDetailEntities"));
                orderEntityInfo.ReferenceDatas      = new ObjectList <ReferencedDataInfo>();
            }
            return(orderEntityInfo);
        }
예제 #2
0
파일: OrderHelper.cs 프로젝트: JuRogn/OA
        private static OrderEntityInfo GetOrderEntityInfo(XElement xe)
        {

            OrderEntityInfo orderEntityInfo = new OrderEntityInfo();
            if (xe != null)
            {
                orderEntityInfo.Entity = GetEntityInfo(xe.Element("Entity"));
                orderEntityInfo.OrderDetailEntities = GetOrderDetailEntities(xe.Element("OrderDetailEntities"));
                orderEntityInfo.ReferenceDatas = new ObjectList<ReferencedDataInfo>();
            }
            return orderEntityInfo;
        }