Skip to content

Instantly share code, notes, and snippets.

@jonathanwoahn
Last active December 4, 2020 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanwoahn/4560d81960f8ea9d8690bd95e5bb0385 to your computer and use it in GitHub Desktop.
Save jonathanwoahn/4560d81960f8ea9d8690bd95e5bb0385 to your computer and use it in GitHub Desktop.
import { DefaultDataService } from '@woahn/ezngrx';
import { Injectable } from '@angular/core';
import { Todo } from './app.module';
@Injectable({
providedIn: 'root'
})
export class TodoDataService extends DefaultDataService<Todo> {
entity = 'Todo';
constructor() {
super();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment