Skip to content

Commit

Permalink
Name fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
aliarmaganuygun committed Oct 15, 2024
1 parent 776c56d commit 03d09ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace BookBazaar.DataAccess.Repository.IRepository
{
public interface IShoppingCardRepository : IRepository<ShoppingCart>
public interface IShoppingCartRepository : IRepository<ShoppingCart>
{
void Update(ShoppingCart obj);
}
Expand Down
2 changes: 1 addition & 1 deletion Bulky.DataAccess/Repository/IRepository/IUnitOfWork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public interface IUnitOfWork
ICategoryRepository Category { get; }
ICompanyRepository Company { get; }
IProductRepository Product { get; }
IShoppingCardRepository ShoppingCart { get; }
IShoppingCartRepository ShoppingCart { get; }
void Save();
}
}
2 changes: 1 addition & 1 deletion Bulky.DataAccess/Repository/ShoppingCartRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace BookBazaar.DataAccess.Repository
{
public class ShoppingCartRepository : Repository<ShoppingCart>, IShoppingCardRepository
public class ShoppingCartRepository : Repository<ShoppingCart>, IShoppingCartRepository
{
private readonly ApplicationDbContext _db;

Expand Down
2 changes: 1 addition & 1 deletion Bulky.DataAccess/Repository/UnitOfWork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class UnitOfWork : IUnitOfWork
public ICategoryRepository Category { get; private set; }
public ICompanyRepository Company { get; private set; }
public IProductRepository Product { get; private set; }
public IShoppingCardRepository ShoppingCart { get; private set; }
public IShoppingCartRepository ShoppingCart { get; private set; }
public UnitOfWork(ApplicationDbContext db)
{
_db = db;
Expand Down

0 comments on commit 03d09ce

Please sign in to comment.