using System.Collections.Generic; using Pipefy.Models; namespace Pipefy.Services { public interface IDatabaseService { List GetDataFromDatabase(string connSourcePath); } }