Refactor poolservice

This commit is contained in:
Daniel Rodriguez 2021-08-04 23:44:21 +02:00
parent e8d062cefe
commit a45e4f2c1d
4 changed files with 264 additions and 162 deletions

View file

@ -6,6 +6,7 @@ import { AppComponent } from './app.component';
import { HomeComponent } from '../components/home/home.component';
import { ReactiveFormsModule } from '@angular/forms';
import { LayoutComponent } from '../components/layout/layout.component';
import { PoolService } from 'src/shared/pool.service';
@NgModule({
declarations: [
@ -18,7 +19,7 @@ import { LayoutComponent } from '../components/layout/layout.component';
AppRoutingModule,
ReactiveFormsModule
],
providers: [],
providers: [PoolService],
bootstrap: [AppComponent]
})
export class AppModule { }