9 lines
206 B
C#
9 lines
206 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface ICardDependencyAggregate
|
|
{
|
|
ICardDbContext CardDbContext { get; }
|
|
IMusicDbContext MusicDbContext { get; }
|
|
} |