Example #1
0
        public void CopyTo(TourGroup group)
        {
            this.Members.CopyTo(group.Members);
            //this.DeletedMembers.CopyTo(group.DeletedMembers);
            this.services.CopyTo(group.services);
            this.SignUpType.CopyTo(group.SignUpType);

            this.Employees.CopyTo(group.Employees);
            this.DeletedEmployees.CopyTo(group.DeletedEmployees);
            group.Status = this.Status;

            if (group.Status != null)
            {
                group.Status.IsDirty = this.Status.IsDirty;
            }

            group.Id      = this.Id;
            group.name    = this.name;
            group.IsDirty = this.IsDirty;
        }
Example #2
0
 public FrmTourMemberEditor(Entities.TourGroup group)
     : this()
 {
     this.group = group;
 }
Example #3
0
 public PaymentStrategyInfo(Tour tour, TourGroup group, ITourService service)
 {
     this.Tour    = tour;
     this.Group   = group;
     this.Service = service;
 }