Skip to content

Commit

Permalink
Deprecated CrudInterface aswell
Browse files Browse the repository at this point in the history
  • Loading branch information
redaxmedia committed Oct 18, 2021
1 parent ed82ad1 commit 08b4009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/crud.service.ts
Expand Up @@ -11,10 +11,10 @@ import { PatchService } from './patch.service';
import { PostService } from './post.service';
import { PutService } from './put.service';
import { RequestService } from './request.service';
import { CrudInterface } from './crud.interface';
import { Crud } from './crud.interface';

@Injectable()
export class CrudService<T> extends CommonService implements CrudInterface<T>
export class CrudService<T> extends CommonService implements Crud<T>
{
protected deleteService : DeleteService<T>;
protected findService : FindService<T>;
Expand Down

0 comments on commit 08b4009

Please sign in to comment.