Ejemplo n.º 1
0
 protected bool Equals(ApplicationStateRequestedOperation other)
 {
     return(Info.IsCollectionEqualTo(other.Info) &&
            Equals(InitiatedBy, other.InitiatedBy) &&
            Equals(Retry, other.Retry) &&
            Equals(Sync, other.Sync));
 }
 public ApplicationOperationState(
     string finishedAt,
     string message,
     ApplicationStateRequestedOperation requestedOperation,
     string phase,
     string retryCount,
     string startedAt,
     ArgoApplicationSyncResult syncResult
     )
 {
     FinishedAt         = finishedAt;
     Message            = message;
     RequestedOperation = requestedOperation;
     Phase      = phase;
     RetryCount = retryCount;
     StartedAt  = startedAt;
     SyncResult = syncResult;
 }