using System.Collections.Generic; namespace BankingBot.Contracts { public interface IScriptManager { T Execute(string scriptPath, Dictionary data, string[] scripts); void Execute(string scriptPath, Dictionary data, string[] scripts); } }