1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Game/Card/CardDependencyAggregate.cs
2023-02-09 17:25:42 +08:00

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; }
}