Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 20, 2022 16:13
Show Gist options
  • Save newerton/ae87079000d4e1f35fa6f68200586e5f to your computer and use it in GitHub Desktop.
Save newerton/ae87079000d4e1f35fa6f68200586e5f to your computer and use it in GitHub Desktop.
import { Author, Book, Genre } from '../entities';
import { IGenericRepository } from './generic-repository.abstract';
export abstract class IDataServices {
abstract authors: IGenericRepository<Author>;
abstract books: IGenericRepository<Book>;
abstract genres: IGenericRepository<Genre>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment