2023-02-12 19:12:26 +01:00
|
|
|
|
using Domain.Config;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Microsoft.Extensions.Options;
|
2023-02-09 10:25:42 +01:00
|
|
|
|
|
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface ICardDependencyAggregate
|
|
|
|
|
{
|
|
|
|
|
ICardDbContext CardDbContext { get; }
|
|
|
|
|
IMusicDbContext MusicDbContext { get; }
|
2023-02-12 19:12:26 +01:00
|
|
|
|
|
|
|
|
|
IOptions<GameConfig> Options { get; }
|
2023-02-09 10:25:42 +01:00
|
|
|
|
}
|