public Position(string title, decimal value) : this() { Title = title; Value = new PaymentValue { GrossValue = value }; }
public Position() { Value = new PaymentValue(); Tags = new List <Tag>(); Category = Category.Default; }