feat(dal): CacheService - структура + CacheMatchingStatusService
This commit is contained in:
45
PARR.DAL/Cache/Services/CacheMatchingStatusService.cs
Normal file
45
PARR.DAL/Cache/Services/CacheMatchingStatusService.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using PARR.DAL.Cache.Models;
|
||||
using PARR.DAL.Cache.Services.Base;
|
||||
|
||||
namespace PARR.DAL.Cache.Services
|
||||
{
|
||||
internal class CacheMatchingStatusService : ICacheMatchingStatusService
|
||||
{
|
||||
private readonly IRedisCacheService redisCacheService;
|
||||
|
||||
public CacheMatchingStatusService(IRedisCacheService redisCacheService)
|
||||
{
|
||||
this.redisCacheService = redisCacheService;
|
||||
}
|
||||
|
||||
public Task DeleteCacheByJobGroupIdAsync(Guid jobGroupId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task DeleteCacheByJobIdAsync(Guid jobId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<MatchingStatus?> GetDataByJobGroupIdAsync(Guid jobGroupId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<MatchingStatus?> GetDataByJobIdAsync(Guid jobId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task SetCahcheByJobGroupIdAsync(Guid jobGroupId, MatchingStatusDto data)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task SetCahcheByJobIdAsync(Guid jobId, MatchingStatusDto data)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user