15 lines
425 B
C#
15 lines
425 B
C#
using Application.Interfaces;
|
|
|
|
namespace Application.Game.Card;
|
|
|
|
public class CardDependencyAggregate : ICardDependencyAggregate
|
|
{
|
|
public CardDependencyAggregate(ICardDbContext cardDbContext, IMusicDbContext musicDbContext)
|
|
{
|
|
CardDbContext = cardDbContext;
|
|
MusicDbContext = musicDbContext;
|
|
}
|
|
|
|
public ICardDbContext CardDbContext { get; }
|
|
public IMusicDbContext MusicDbContext { get; }
|
|
} |