Skip to content

Instantly share code, notes, and snippets.

@royib
Created January 19, 2022 11:57
Show Gist options
  • Save royib/bee339a7e6992ea7ef7ad2b7f6c4cb3b to your computer and use it in GitHub Desktop.
Save royib/bee339a7e6992ea7ef7ad2b7f6c4cb3b to your computer and use it in GitHub Desktop.
data services abstraction
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