10 lines
308 B
C#
10 lines
308 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Kurs.Platform.DynamicData;
|
|
|
|
public interface ISpRepository : IScopedDependency
|
|
{
|
|
Task<dynamic> CallSpAsync(string sp, string dataSourceCode, Dictionary<string, object> parameters = null);
|
|
}
|