using HackSystem.WebAPI.Application.Repository.Abstractions; using HackSystem.WebAPI.ProgramServer.Domain.Entity.Maps; namespace HackSystem.WebAPI.ProgramServer.Application.Repository; public interface IUserProgramMapRepository : IRepositoryBase { Task CheckUserProgramMap(string userId, string programId); Task> QueryUserProgramMaps(string userId); Task DeleteUserProgramMap(string userId, string programId); }