using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Biskilog_Accounting.Shared.Interfaces { public interface IConnectionService { /// /// Prepares and returns the connection string for a client using the specified database id /// /// Specified database id to use /// string GetClientConnectionString(int a_databaseId); /// /// Prepare the DB context from the specified connection string /// /// /// A configured BiskAcdbContext object PrepareDBContext(string a_connectionString); } }