Example #1
0
        public ConversionRequest(string type, string from, string to, decimal value)
        {
            _from  = from;
            _to    = to;
            _value = value;

            _conversion = ConversionFactory.GetConversionOfType(type);
        }