15 lines
282 B
C#
15 lines
282 B
C#
|
using Injectio.Attributes;
|
||
|
|
||
|
namespace Galaeth.Core.Infrastructure;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Perform any setup steps required for the data access layer.
|
||
|
/// </summary>
|
||
|
public interface IDataAccessLayerSetup
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Setup routine.
|
||
|
/// </summary>
|
||
|
Task Setup();
|
||
|
}
|