public Outing(TypeOfOuting type, int attendance, DateTime outingDate, double outingCost)
 {
     OutingType       = type;
     OutingAttendance = attendance;
     OutingDate       = outingDate;
     OutingCost       = outingCost;
 }
Exemplo n.º 2
0
 public Outing(int peopleAttended, DateTime dateOfOuting, decimal costPerPerson, decimal costPerEvent, TypeOfOuting outingType)
 {
     PeopleAttended = peopleAttended;
     DateOfOuting   = dateOfOuting;
     CostPerPerson  = costPerPerson;
     CostPerEvent   = costPerEvent;
     OutingType     = outingType;
 }