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; }
public FrmTourMemberEditor(Entities.TourGroup group) : this() { this.group = group; }
public PaymentStrategyInfo(Tour tour, TourGroup group, ITourService service) { this.Tour = tour; this.Group = group; this.Service = service; }