using AntDesign; using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Net.Http.Json; using System.Text.Json; using System.Threading.Tasks; using wispro.sp.entity; using wispro.sp.web.Models; using wispro.sp.web.Services; namespace wispro.sp.web.Components { public partial class ReviewerAppeal { private ReviewerAppealModel _Model; private IFeedbackRef feedbackRef; [Inject] protected AppealTypeService _atService { get; set; } [Inject] protected HttpClient _httpClient { get; set; } protected override void OnInitialized() { _Model = base.Options ?? new ReviewerAppealModel(); base.OnInitialized(); feedbackRef = base.FeedbackRef; } } }