/// <summary> /// Create a new unique service ticket status based on the given string. /// </summary> /// <param name="Status">The string representation of the service ticket status.</param> private ServiceTicketStatusTypes(params String[] Status) { this.InternalId = Status; this.InternalText = Status.AggregateWith('.'); }