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