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;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|