All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m14s
23 lines
610 B
C#
23 lines
610 B
C#
using Documents.Interfaces;
|
|
using Documents.Models;
|
|
using Domain.Dtos;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Models.Interfaces;
|
|
|
|
namespace phronCare.API.Controllers.Documents
|
|
{
|
|
public class DocumentController : ControllerBase
|
|
{
|
|
private readonly IDocumentTemplateService _documentTemplateService;
|
|
private readonly IQuoteDom _quoteService;
|
|
|
|
public DocumentController(IDocumentTemplateService documentTemplateService, IQuoteDom quoteService)
|
|
{
|
|
_documentTemplateService = documentTemplateService;
|
|
_quoteService = quoteService;
|
|
}
|
|
|
|
|
|
}
|
|
}
|