Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 15 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {Inject, Injectable} from '@nestjs/common'; |
||
2 | import {IQuoteRepository} from './Repository/IQuoteRepository'; |
||
3 | |||
4 | @Injectable() |
||
5 | export class QuoteNumberGenerator { |
||
6 | constructor( |
||
7 | @Inject('IQuoteRepository') |
||
8 | private readonly quoteRepository: IQuoteRepository |
||
9 | ) {} |
||
10 | |||
11 | public async generate(): Promise<string> { |
||
12 | return ''; |
||
13 | } |
||
14 | } |
||
15 |