using Injectio.Attributes; namespace Galaeth.Core.Infrastructure; /// /// Perform any setup steps required for the data access layer. /// public interface IDataAccessLayerSetup { /// /// Setup routine. /// Task Setup(); }