Пример #1
0
 public Representation(DateTime date, string purpose, RepresentationCircumstance circumstance, List<RepresentationReceiver> receivers, decimal ammount, decimal vatPercent, RepresentationType type)
 {
     Date = date;
     Purpose = purpose;
     Circumstance = circumstance;
     Receivers = receivers;
     Ammount = ammount;
     VatPercent = vatPercent;
     Type = type;
 }
Пример #2
0
 public void AddRepresentation(
     DateTime date, string purpose, RepresentationCircumstance circumstance, 
     List<RepresentationReceiver> receivers, decimal ammount, decimal vat, RepresentationType type)
 {
     Representations.Add(new Representation(date, purpose, circumstance, receivers, ammount, vat, type));
 }