Add GeneratePDF
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m0s

This commit is contained in:
Leandro Hernan Rojas 2025-05-16 21:05:27 -03:00
parent 05aa480f27
commit 0b20a6432f

View File

@ -1,15 +1,18 @@
using Domain.Dtos;
using Domain.Entities;
using Domain.Generics;
using Microsoft.JSInterop;
using System.Net.Http.Json;
namespace phronCare.UIBlazor.Services.Sales.Quotes
{
public class QuoteService
{
private readonly IJSRuntime _js;
private readonly HttpClient _http;
public QuoteService(HttpClient http)
public QuoteService(HttpClient http, IJSRuntime js)
{
_js = js;
_http = http;
}