//Вручную public Company(string Name, string Description,Location Location, User RepresentorAccount, Activity Activities) { this.Name = Name; this.Description = Description; this.Location = Location; this.RepresentorAccount = RepresentorAccount; this.Activities = new Collection<Activity>(); }
public Company(string p, string p_2, Location p_3, User p_4, Collection<Activity> p_5) { // TODO: Complete member initialization this.Name = p; this.Description = p_2; this.Location = p_3; this.RepresentorAccount = p_4; this.Activities = p_5; }