ReviewerAppeal.razor.cs 908 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using AntDesign;
  2. using Microsoft.AspNetCore.Components;
  3. using Microsoft.AspNetCore.Components.Forms;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Net.Http;
  8. using System.Net.Http.Json;
  9. using System.Text.Json;
  10. using System.Threading.Tasks;
  11. using wispro.sp.entity;
  12. using wispro.sp.web.Models;
  13. using wispro.sp.web.Services;
  14. namespace wispro.sp.web.Components
  15. {
  16. public partial class ReviewerAppeal
  17. {
  18. private ReviewerAppealModel _Model;
  19. private IFeedbackRef feedbackRef;
  20. [Inject]
  21. protected AppealTypeService _atService { get; set; }
  22. [Inject]
  23. protected HttpClient _httpClient { get; set; }
  24. protected override async void OnInitialized()
  25. {
  26. _Model = base.Options ?? new ReviewerAppealModel();
  27. base.OnInitialized();
  28. feedbackRef = base.FeedbackRef;
  29. }
  30. }
  31. }