32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using Indotalent.ConfigBackEnd.Interfaces;
|
|
using Indotalent.ConfigFrontEnd.Common;
|
|
using Indotalent.Features.Purchase.BillReport.Cqrs;
|
|
using Indotalent.Infrastructure.Authentication.Identity;
|
|
using Indotalent.Shared.Models;
|
|
using Microsoft.AspNetCore.Components;
|
|
using MudBlazor;
|
|
using RestSharp;
|
|
|
|
namespace Indotalent.Features.Purchase.BillReport;
|
|
|
|
public class BillReportService : BaseService
|
|
{
|
|
private readonly RestClient _client;
|
|
|
|
public BillReportService(
|
|
IHttpClientFactory clientFactory,
|
|
NavigationManager nav,
|
|
ISnackbar snackbar,
|
|
ICurrentUserService currentUserService,
|
|
TokenProvider tokenProvider)
|
|
: base(clientFactory, nav, snackbar, currentUserService, tokenProvider)
|
|
{
|
|
_client = new RestClient(nav.BaseUri);
|
|
}
|
|
|
|
public async Task<ApiResponse<List<GetBillReportListDto>>?> GetBillReportListAsync()
|
|
{
|
|
var request = new RestRequest("api/bill-report", Method.Get);
|
|
return await ExecuteWithResponseAsync<List<GetBillReportListDto>>(_client, request);
|
|
}
|
|
} |