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

19 lines
563 B
C#
Raw Normal View History

2023-02-16 09:53:02 +01:00
using Domain.Config;
using Microsoft.Extensions.Options;
2023-02-09 10:25:42 +01:00
namespace Application.Game.Card;
public class CardDependencyAggregate : ICardDependencyAggregate
{
public CardDependencyAggregate(ICardDbContext cardDbContext, IMusicDbContext musicDbContext, IOptions<GameConfig> options)
2023-02-09 10:25:42 +01:00
{
CardDbContext = cardDbContext;
MusicDbContext = musicDbContext;
Options = options;
2023-02-09 10:25:42 +01:00
}
public ICardDbContext CardDbContext { get; }
public IMusicDbContext MusicDbContext { get; }
public IOptions<GameConfig> Options { get; }
2023-02-09 10:25:42 +01:00
}