Ejemplo n.º 1
0
        /// <summary>
        /// Create a new service ticket status.
        /// </summary>
        /// <param name="Id">The unique identification of the service ticket.</param>
        /// <param name="Status">The current timestamped status of the service ticket.</param>
        /// <param name="CustomData">An optional dictionary of customer-specific data.</param>
        public ServiceTicketStatus(ServiceTicket_Id Id,
                                   Timestamped <ServiceTicketStatusTypes> Status,
                                   IReadOnlyDictionary <String, Object> CustomData = null)

            : base(CustomData)

        {
            this.Id     = Id;
            this.Status = Status;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a reference to a service ticket.
 /// </summary>
 /// <param name="Id">The unique identification of the service ticket reference.</param>
 /// <param name="Description">A description of the service ticket reference.</param>
 public ServiceTicketReference(ServiceTicket_Id Id,
                               I18NString Description = null)
 {
     this.Id          = Id;
     this.Description = Description;
 }