Example #1
0
        /// <summary>
        /// Create a new PushChargingStationOperatorStatus result.
        /// </summary>
        /// <param name="AuthId">The unqiue identification of the authenticator.</param>
        /// <param name="IReceiveStatus">An object implementing IReceiveStatus.</param>
        /// <param name="Result">The result of the operation.</param>
        /// <param name="Description">An optional description of the result code.</param>
        /// <param name="RejectedChargingStationOperatorStatusUpdates">An enumeration of rejected ChargingStationOperator status updates.</param>
        /// <param name="Warnings">Warnings or additional information.</param>
        /// <param name="Runtime">The runtime of the request.</param>
        internal PushChargingStationOperatorStatusResult(IId AuthId,
                                                         IReceiveStatus IReceiveStatus,
                                                         PushChargingStationOperatorStatusResultTypes Result,
                                                         String Description = null,
                                                         IEnumerable <ChargingStationOperatorStatusUpdate> RejectedChargingStationOperatorStatusUpdates = null,
                                                         IEnumerable <Warning> Warnings = null,
                                                         TimeSpan?Runtime = null)

            : this(AuthId,
                   Result,
                   Description,
                   RejectedChargingStationOperatorStatusUpdates,
                   Warnings,
                   Runtime)

        {
            this.IReceiveStatus = IReceiveStatus;
        }
Example #2
0
        /// <summary>
        /// Create a new PushChargingStationOperatorStatus result.
        /// </summary>
        /// <param name="AuthId">The unqiue identification of the authenticator.</param>
        /// <param name="Result">The result of the operation.</param>
        /// <param name="Description">An optional description of the result code.</param>
        /// <param name="RejectedChargingStationOperatorStatusUpdates">An enumeration of rejected ChargingStationOperator status updates.</param>
        /// <param name="Warnings">Warnings or additional information.</param>
        /// <param name="Runtime">The runtime of the request.</param>
        private PushChargingStationOperatorStatusResult(IId AuthId,
                                                        PushChargingStationOperatorStatusResultTypes Result,
                                                        String Description = null,
                                                        IEnumerable <ChargingStationOperatorStatusUpdate> RejectedChargingStationOperatorStatusUpdates = null,
                                                        IEnumerable <Warning> Warnings = null,
                                                        TimeSpan?Runtime = null)
        {
            this.AuthId = AuthId;
            this.Result = Result;

            this.Description = Description.IsNotNullOrEmpty()
                                                  ? Description.Trim()
                                                  : null;

            this.RejectedChargingStationOperatorStatusUpdates = RejectedChargingStationOperatorStatusUpdates != null
                                                  ? RejectedChargingStationOperatorStatusUpdates.Where(evse => evse != null)
                                                  : new ChargingStationOperatorStatusUpdate[0];

            this.Warnings = Warnings != null
                                                  ? Warnings.Where(warning => warning.IsNotNullOrEmpty())
                                                  : new Warning[0];

            this.Runtime = Runtime;
        }