mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import { Service } from 'typedi';
|
|
import { SendInvoiceMailDTO } from '@/interfaces';
|
|
|
|
|
|
@Service()
|
|
export class SendSaleInvoiceMail {
|
|
public sendSaleInvoiceMail(
|
|
tenantId: number,
|
|
saleInvoiceId: number,
|
|
messageDTO: SendInvoiceMailDTO
|
|
) {}
|
|
}
|