Corrected Typo

This commit is contained in:
Lavardin 2022-05-09 18:31:09 -07:00
parent fad8bac9dc
commit 8fe3c5fe5d
6 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
using Core.Interfaces;
using Infrastucture.Data;
using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.OpenApi.Models;

View File

@ -7,7 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "API", "API\API.csproj", "{B
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "Core\Core.csproj", "{124DD725-C323-44B3-B490-0D3613FE6AFB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastucture", "Infrastructure\Infrastucture.csproj", "{4DDBA348-67D9-4797-9A0F-355220BC9B19}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "Infrastructure\Infrastructure.csproj", "{4DDBA348-67D9-4797-9A0F-355220BC9B19}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -1,5 +1,5 @@
// <auto-generated />
using Infrastucture.Data;
using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;

View File

@ -1,5 +1,5 @@
// <auto-generated />
using Infrastucture.Data;
using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;

View File

@ -2,7 +2,7 @@ using Core.Entities;
using Core.Interfaces;
using Microsoft.EntityFrameworkCore;
namespace Infrastucture.Data
namespace Infrastructure.Data
{
public class ProductRepository : iProductRepository
{

View File

@ -1,7 +1,7 @@
using Core.Entities;
using Microsoft.EntityFrameworkCore;
namespace Infrastucture.Data
namespace Infrastructure.Data
{
public class StoreContext : DbContext
{