コード例 #1
0
ファイル: DTOFactory.cs プロジェクト: cscbruneau/InFrame
        public static DemandDTO getDemandConfigDTO(Demand myDemand)
        {
            DemandDTO result = new DemandDTO();

            ToolBox.MapObject(myDemand, result, true);

            result.dynPropValues = myDemand.getRealValues();
            return(result);
        }