Ejemplo n.º 1
0
        public override CurrentItemCategory MapCurrentItemCategoryfromDLCurrentItemCategory(ADL_CurrentItemCategory currentitemcategory)
        {
            var result = new CurrentItemCategory();

            result.Id          = currentitemcategory.Id;
            result.Name        = currentitemcategory.Name;
            result.Description = currentitemcategory.Description;
            result.VAT         = currentitemcategory.VAT;

            return(result);
        }
Ejemplo n.º 2
0
        public override ADL_CurrentItemCategory MapCurrentItemCategorytoDLCurrentItemCategory(CurrentItemCategory currentitemcategory)
        {
            var result = new MOCK_DL_CurrentItemCategory();

            result.Name        = currentitemcategory.Name;
            result.Description = currentitemcategory.Description;
            result.VAT         = currentitemcategory.VAT;

            return(result);
        }
Ejemplo n.º 3
0
 public abstract ADL_CurrentItemCategory MapCurrentItemCategorytoDLCurrentItemCategory(CurrentItemCategory currentitemcategory);