public HealthStatusResponse(HealthStatusType status)
 {
     this.Status = status;
 }
Пример #2
0
 public ServiceHealthStatus(HealthStatusType type, bool isHealthy, object data = null)
 {
     Type      = type;
     IsHealthy = isHealthy;
     Data      = data ?? Empty;
 }
 public HealthStatusResponse(HealthStatusType status, string message)
 {
     this.Status  = status;
     this.Message = message;
 }
Пример #4
0
 public HealthCheckResultDto(HealthCheckType checkType, HealthStatusType statusType)
 {
     StatusType = statusType;
     CheckType  = checkType;
 }