コード例 #1
0
        public static _Proxy.FabricContentsComposition MapToModelObject(ContentCompositionViewModel objectToBeMapped, int fabCategoryId, string fabCode)
        {
            var temp = new _Proxy.FabricContentsComposition
            {
                ContentID        = objectToBeMapped.FabContentID,
                FabricCategoryID = fabCategoryId,
                FabricCode       = fabCode,
                Percentage       = float.Parse(objectToBeMapped.ContentPercentage.ToString()),
            };

            return(temp);
        }
コード例 #2
0
        public static ContentCompositionViewModel MapToViewModelObject(_Proxy.FabricContentsComposition objectToBeMapped)
        {
            var x = new ContentCompositionViewModel
            {
                FabContent =
                {
                    Iserial = objectToBeMapped.tbl_lkp_Contents.Iserial,
                    Aname   = objectToBeMapped.tbl_lkp_Contents.Aname,
                    Ename   = objectToBeMapped.tbl_lkp_Contents.Ename,
                    Code    = objectToBeMapped.tbl_lkp_Contents.Code
                },
                FabContentID             = objectToBeMapped.ContentID,
                ContentCompositionSerial = objectToBeMapped.Iserial,
                ContentPercentage        = objectToBeMapped.Percentage,
            };

            return(x);
        }