This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.EntityFrameworkCore; | |
| using NH.WikiMovies.Infrastructure.Context; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| namespace NH.WikiMovies.Infrastructure.Repositories | |
| { | |
| public class GenericRepository<T> where T : class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const dataHeroes = [ | |
| { | |
| id: 2312317, | |
| heroName: 'Captian America', | |
| realName: 'Steve Rogers', | |
| description: | |
| 'El Capitán América, cuyo nombre real es Steven "Steve" Grant Rogers, es un superhéroe ficticio que aparece en los cómics estadounidenses publicados por Marvel Comics.', | |
| photoUrl: | |
| 'https://pm1.narvii.com/6072/a6accc9fef58647c3aa6607a712b5e6bfefa07d4_hq.jpg', | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "ConnectionStrings": { | |
| "Qhatu": "Data Source=desarrollo-sqlserver.database.windows.net;Initial Catalog=qhatu;Integrated Security=False;User ID=qhatu;Password=P4$$w0rd2022.;Connect Timeout=60;Encrypt=False;TrustServerCertificate=False" | |
| }, | |
| "Logging": { | |
| "LogLevel": { | |
| "Default": "Information", | |
| "Microsoft": "Warning", | |
| "Microsoft.Hosting.Lifetime": "Information" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CommonModule } from '@angular/common'; | |
| import { NgModule } from '@angular/core'; | |
| import { OverlayModule } from '@angular/cdk/overlay'; | |
| import { CdkTreeModule } from '@angular/cdk/tree'; | |
| import { PortalModule } from '@angular/cdk/portal'; | |
| import { MatAutocompleteModule } from '@angular/material/autocomplete'; | |
| import { MatButtonModule } from '@angular/material/button'; | |
| import { MatButtonToggleModule } from '@angular/material/button-toggle'; | |
| import { MatCardModule } from '@angular/material/card'; | |
| import { MatCheckboxModule } from '@angular/material/checkbox'; |
OlderNewer