mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
13 lines
308 B
C#
13 lines
308 B
C#
using LiveGameFeed.Data.Abstract;
|
|
using LiveGameFeed.Models;
|
|
|
|
namespace LiveGameFeed.Data.Repositories
|
|
{
|
|
public class MatchRepository : EntityBaseRepository<Match>, IMatchRepository
|
|
{
|
|
public MatchRepository(LiveGameContext context)
|
|
: base(context)
|
|
{ }
|
|
}
|
|
}
|