12 lines
274 B
C#
12 lines
274 B
C#
using Domain.Config;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface ICardDependencyAggregate
|
|
{
|
|
ICardDbContext CardDbContext { get; }
|
|
IMusicDbContext MusicDbContext { get; }
|
|
|
|
IOptions<GameConfig> Options { get; }
|
|
} |