18 lines
555 B
C#
18 lines
555 B
C#
using LFlow.Base.Interfaces;
|
|
using LFlow.VersionManagement.Enums;
|
|
using LFlow.VersionManagement.Model;
|
|
|
|
namespace LFlow.VersionManagement.Service;
|
|
public interface IVersionManagementService : IService//<VersionDto>
|
|
{
|
|
VersionDto GetById(string id);
|
|
List<VersionDto> Search(VersionDto whereObj);
|
|
|
|
int DeleteById(string id);
|
|
VersionDto Save(VersionDto entity, bool isUpdate);
|
|
|
|
List<VersionDto> GetAll(int pageIndex, int pageSize, ref int total);
|
|
|
|
VersionDto? GetLastVersion(VersionChannel channel, UpgradeTargetType targetType);
|
|
}
|