-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39cddbf
commit c457d88
Showing
5 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
13 changes: 13 additions & 0 deletions
13
Exam.StockManagement.Infrastructure/BaseRepositories/CategoryRepository.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Exam.StockManagement.Application.Abstractions.IRepository; | ||
Check failure on line 1 in Exam.StockManagement.Infrastructure/BaseRepositories/CategoryRepository.cs GitHub Actions / build
|
||
using Exam.StockManagement.Domain.Entities.Models; | ||
using Exam.StockManagement.Infrastructure.Persistance; | ||
|
||
namespace Exam.StockManagement.Infrastructure.BaseRepositories | ||
{ | ||
public class CategoryRepository : BaseRepository<Category>, ICategoryRepository | ||
{ | ||
public CategoryRepository(StockManagementDbContext context) : base(context) | ||
{ | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
Exam.StockManagement.Infrastructure/BaseRepositories/ProductRepository.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Exam.StockManagement.Application.Abstractions.IRepository; | ||
Check failure on line 1 in Exam.StockManagement.Infrastructure/BaseRepositories/ProductRepository.cs GitHub Actions / build
|
||
using Exam.StockManagement.Domain.Entities.Models; | ||
using Exam.StockManagement.Infrastructure.Persistance; | ||
|
||
namespace Exam.StockManagement.Infrastructure.BaseRepositories | ||
{ | ||
public class ProductRepository : BaseRepository<Product>, IProductRepository | ||
{ | ||
public ProductRepository(StockManagementDbContext context) : base(context) | ||
{ | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
Exam.StockManagement.Infrastructure/BaseRepositories/StatsRepository.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Exam.StockManagement.Application.Abstractions.IRepository; | ||
Check failure on line 1 in Exam.StockManagement.Infrastructure/BaseRepositories/StatsRepository.cs GitHub Actions / build
|
||
using Exam.StockManagement.Domain.Entities.Models; | ||
using Exam.StockManagement.Infrastructure.Persistance; | ||
|
||
namespace Exam.StockManagement.Infrastructure.BaseRepositories | ||
{ | ||
public class StatsRepository : BaseRepository<Stats>, IStatsService | ||
{ | ||
public StatsRepository(StockManagementDbContext context) : base(context) | ||
{ | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
Exam.StockManagement.Infrastructure/BaseRepositories/UserRepository.cs
This file contains 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