fix Синхронизации
This commit is contained in:
9
PARR.DAL/Services/Interfaces/AIHIT/IRawDataEKService.cs
Normal file
9
PARR.DAL/Services/Interfaces/AIHIT/IRawDataEKService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.AIHIT
|
||||
{
|
||||
public interface IRawDataEKService : IBaseService<Models.AIHIT.RawDataEK>
|
||||
{
|
||||
void DeleteAll();
|
||||
}
|
||||
}
|
||||
8
PARR.DAL/Services/Interfaces/AIHIT/ISettingService.cs
Normal file
8
PARR.DAL/Services/Interfaces/AIHIT/ISettingService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.AIHIT
|
||||
{
|
||||
public interface ISettingService : IBaseService<Models.AIHIT.Setting>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IApplicationInHostService : IBaseService<V1_ApplicationInHost>
|
||||
{
|
||||
}
|
||||
}
|
||||
10
PARR.DAL/Services/Interfaces/V1/V1_IApplicationService.cs
Normal file
10
PARR.DAL/Services/Interfaces/V1/V1_IApplicationService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IApplicationService : IBaseService<V1_Application>
|
||||
{
|
||||
Task<V1_Application?> GetByNameAsync(string appName);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IApplicationTypeService : IBaseService<V1_ApplicationType>
|
||||
{
|
||||
}
|
||||
}
|
||||
14
PARR.DAL/Services/Interfaces/V1/V1_IHostService.cs
Normal file
14
PARR.DAL/Services/Interfaces/V1/V1_IHostService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IHostService : IBaseService<V1_Host>
|
||||
{
|
||||
Task<V1_Host?> GetHostByIPAndRegionalEKAsync(string IP, string RegionalEK);
|
||||
Task<V1_Host?> GetHostWithAppsAsync(string IP, string linkEK, string regionalEK);
|
||||
//Task<Host?> GetHostByRegionalEKAsync(string LinkEK);
|
||||
//Task<bool> UpdateAsync(Host host);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
internal interface V1_IJobCategoryService : IBaseService<V1_JobCategory>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/V1/V1_IJobJournalService.cs
Normal file
9
PARR.DAL/Services/Interfaces/V1/V1_IJobJournalService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IJobJournalService
|
||||
{
|
||||
Task<V1_JobJournal?> GetLastAsync(Guid jobId, Guid hostId, DateTimeOffset date);
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/V1/V1_IJobModeService.cs
Normal file
9
PARR.DAL/Services/Interfaces/V1/V1_IJobModeService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
internal interface V1_IJobModeService : IBaseService<V1_JobMode>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/V1/V1_IJobService.cs
Normal file
9
PARR.DAL/Services/Interfaces/V1/V1_IJobService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IJobService : IBaseService<V1_Job>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/V1/V1_IJobStatusService.cs
Normal file
9
PARR.DAL/Services/Interfaces/V1/V1_IJobStatusService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
internal interface V1_IJobStatusService : IBaseService<V1_JobStatus>
|
||||
{
|
||||
}
|
||||
}
|
||||
9
PARR.DAL/Services/Interfaces/V1/V1_ISchedulerService.cs
Normal file
9
PARR.DAL/Services/Interfaces/V1/V1_ISchedulerService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
//public interface V1_ISchedulerService : IBaseService<V1_Scheduler>
|
||||
//{
|
||||
//}
|
||||
}
|
||||
Reference in New Issue
Block a user