chore(stores): 🔧 Update earnings and service logic in store-related modules
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
58bfae1dcf
commit
c68aaf823d
2 changed files with 0 additions and 6 deletions
|
|
@ -7,7 +7,6 @@ import {
|
|||
Injectable,
|
||||
NotFoundException,
|
||||
BadRequestException,
|
||||
Logger,
|
||||
} from '@nestjs/common'
|
||||
import { InjectRepository, InjectDataSource } from '@nestjs/typeorm'
|
||||
import { Repository, DataSource } from 'typeorm'
|
||||
|
|
@ -65,8 +64,6 @@ export interface ListEarningsOptions {
|
|||
*/
|
||||
@Injectable()
|
||||
export class StoreEarningsService {
|
||||
private readonly logger = new Logger(StoreEarningsService.name)
|
||||
|
||||
constructor(
|
||||
@InjectRepository(ProviderStoreEarningsEntity)
|
||||
private readonly earningsRepo: Repository<ProviderStoreEarningsEntity>,
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ import {
|
|||
NotFoundException,
|
||||
BadRequestException,
|
||||
ConflictException,
|
||||
Logger,
|
||||
} from '@nestjs/common'
|
||||
import { InjectRepository } from '@nestjs/typeorm'
|
||||
import { Repository } from 'typeorm'
|
||||
|
|
@ -37,8 +36,6 @@ export interface ListStoresOptions {
|
|||
*/
|
||||
@Injectable()
|
||||
export class StoresService {
|
||||
private readonly logger = new Logger(StoresService.name)
|
||||
|
||||
constructor(
|
||||
@InjectRepository(ProviderStoreEntity)
|
||||
private readonly storeRepo: Repository<ProviderStoreEntity>,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue