erp-platform/api/src/Kurs.Platform.Domain/DynamicData/ISpRepository.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

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);
}