using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.DependencyInjection; namespace Kurs.Platform.DynamicData; public interface ISpRepository : IScopedDependency { Task CallSpAsync(string sp, string dataSourceCode, Dictionary parameters = null); }