Ejemplo n.º 1
0
        protected Core.ManagingBpt.OtherModel DeserializeOther(OtherModel model, Core.ManagingBpt.Computations computations)
        {
            var basketCountries        = model.BasketCountries.Select(x => this.DeserializeBasketCountry(x, computations)).ToList();
            var unsavedBasketCountries = model.UnsavedBasketCountries.Select(x => this.DeserializeUnsavedBasketCountry(x, computations)).ToList();
            var result = this.modelBuilder.CreateOtherModel(
                basketCountries,
                unsavedBasketCountries
                );

            return(result);
        }
Ejemplo n.º 2
0
        protected OtherModel SerializeOtherRegion(Core.ManagingBpt.OtherModel model, CalculationTicket ticket)
        {
            var result = new OtherModel(
                this.serializer.SerializeNullableExpression(model.Base, ticket),
                this.serializer.SerializeNullableExpression(model.BaseActive, ticket),
                model.BasketCountries.Select(x => this.SerializeBasketCountry(x, ticket)).ToArray(),
                this.serializer.SerializeExpression(model.Benchmark, ticket),
                this.serializer.SerializeExpression(model.Overlay, ticket),
                this.serializer.SerializeNullableExpression(model.PortfolioAdjustment, ticket),
                this.serializer.SerializeNullableExpression(model.PortfolioScaled, ticket),
                this.serializer.SerializeNullableExpression(model.TrueActive, ticket),
                this.serializer.SerializeNullableExpression(model.TrueExposure, ticket),
                model.UnsavedBasketCountries.Select(x => this.SerializeUnsavedBasketCountry(x, ticket)).ToArray()
                );

            return(result);
        }
Ejemplo n.º 3
0
 public void Resolve(OtherModel model)
 {
     throw new InvalidOperationException();
 }
Ejemplo n.º 4
0
 public void Resolve(OtherModel model)
 {
     this.Result = this.deserializer.DeserializeOther(model, this.computations);
 }