Worki.Data.Models.Member.Member C# (CSharp) Méthode

Member() public méthode

public Member ( ) : System
Résultat System
        public Member()
        {
            this.FavoriteLocalisations = new HashSet<FavoriteLocalisation>();
            this.MemberBookings = new HashSet<MemberBooking>();
            this.MemberClients = new HashSet<MemberClient>();
            this.MemberClientsOwners = new HashSet<MemberClient>();
            this.MemberEditions = new HashSet<MemberEdition>();
            this.MemberQuotations = new HashSet<MemberQuotation>();
            this.MembersInGroups = new HashSet<MembersInGroup>();
            this.Rentals = new HashSet<Rental>();
            this.Transactions = new HashSet<Transaction>();
            this.LocalisationClients = new HashSet<LocalisationClient>();
            this.Comments = new HashSet<Comment>();
            this.Localisations = new HashSet<Localisation>();
            this.Invoices = new HashSet<Invoice>();
            this.ApiClientAuthorizations = new HashSet<ApiClientAuthorization>();
            OnInitialized();
        }