Добавлен префикс таблицам первой структуры базы
This commit is contained in:
@@ -7,7 +7,7 @@ using PARR.DAL.Services.Interfaces;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations
|
||||
{
|
||||
internal class JobCategoryService : BaseService<JobCategory>, IJobCategoryService
|
||||
internal class JobCategoryService : BaseService<V1_JobCategory>, IJobCategoryService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
private readonly ILogger<JobCategoryService> logger;
|
||||
@@ -17,7 +17,7 @@ namespace PARR.DAL.Services.Implementations
|
||||
this.dataContext = dataContext;
|
||||
this.logger = logger;
|
||||
}
|
||||
protected override DbSet<JobCategory> EntitySet => dataContext.JobCategories;
|
||||
protected override DbSet<V1_JobCategory> EntitySet => dataContext.JobCategories;
|
||||
|
||||
protected override DataContext EntitiContext => dataContext;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user