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