public ObjectResultBase(HttpStatusCode httpStatus) : base(null) { this.StatusCode = (int)httpStatus; this.Value = ProblemDetailsFactory.New(httpStatus); }
public ObjectResultBase(HttpStatusCode httpStatus, ModelStateDictionary modelState) : base(null) { this.StatusCode = (int)httpStatus; this.Value = ProblemDetailsFactory.New(httpStatus, modelState); }