using System.Collections.Immutable; namespace Connected.ServiceModel.Data; public interface ITableService { Task> Query(string commandText); Task Select(string commandText); Task Execute(string commandText); }