Esempio n. 1
0
        public static VehicleInformation FromDtoToDomainObject(
            VehicleInformationDto source)
        {
            VehicleInformation target = new VehicleInformation(source.Vin);

            target.Engine       = EngineAssembler.FromDtoToObject(source.Engine);
            target.VehicleModel = source.VehicleModel;
            return(target);
        }
Esempio n. 2
0
        public static VehicleInformationDto FromDomainObjectToDto(
            VehicleInformation source)
        {
            VehicleInformationDto target = new VehicleInformationDto();

            target.Engine       = EngineAssembler.FromObjectToDto(source.Engine);
            target.VehicleModel = source.VehicleModel;
            target.Vin          = source.Vin;
            return(target);
        }