コード例 #1
0
        public static bll.ProductCategory ToProductCategory(this dto.Category dto, bll.ProductCategory bll)
        {
            //bll.ProductCategory bll = new bll.ProductCategory(dto.Id);



            return(bll);
        }
コード例 #2
0
        public static dto.ProductCategory ToDTO(this bll.ProductCategory bll)
        {
            dto.ProductCategory dto = new dto.ProductCategory();

            dto.Id = bll.Id;


            return(dto);
        }
コード例 #3
0
        public static bll.ProductCategory ToBLL(this dto.ProductCategory dto)
        {
            bll.ProductCategory bll = new bll.ProductCategory();

            bll.Id = dto.Id;


            return(bll);
        }