refactor: atualizações e remoção de módulos não utilizados
This commit is contained in:
@@ -4,9 +4,7 @@ import { DebDto } from '../dto/DebDto';
|
||||
|
||||
@Injectable()
|
||||
export class DebService {
|
||||
constructor(
|
||||
private readonly debRepository: DebRepository,
|
||||
) {}
|
||||
constructor(private readonly debRepository: DebRepository) {}
|
||||
|
||||
/**
|
||||
* Busca débitos por CPF ou CGCENT
|
||||
@@ -21,6 +19,10 @@ export class DebService {
|
||||
matricula?: number,
|
||||
cobranca?: string,
|
||||
): Promise<DebDto[]> {
|
||||
return await this.debRepository.findByCpfCgcent(cpfCgcent, matricula, cobranca);
|
||||
return await this.debRepository.findByCpfCgcent(
|
||||
cpfCgcent,
|
||||
matricula,
|
||||
cobranca,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user