first commit

This commit is contained in:
Blas Santome Ocampo
2026-03-23 09:35:15 +01:00
commit 5ff88d8cf6
17 changed files with 1292 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{{#apiInfo}}
{{#apis}}
{{#operations}}
import { Provider } from '@angular/core';
import { {{constantName}}_REPOSITORY } from '@/domain/repositories/{{classFilename}}.repository.contract';
import { {{classname}}RepositoryImpl } from '@/data/repositories/{{classFilename}}.repository.impl';
/**
* {{classname}} Repository Provider
* Binds the repository contract with its implementation
*/
export const {{classname}}RepositoryProvider: Provider = {
provide: {{constantName}}_REPOSITORY,
useClass: {{classname}}RepositoryImpl
};
{{/operations}}
{{/apis}}
{{/apiInfo}}