mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 01:37:59 +00:00
added Data, Models, EntityFramework
This commit is contained in:
12
Data/Repositories/MatchRepository.cs
Normal file
12
Data/Repositories/MatchRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using LiveGameFeed.Data.Abstract;
|
||||
using LiveGameFeed.Models;
|
||||
|
||||
namespace LiveGameFeed.Data.Repositories
|
||||
{
|
||||
public class MatchRepository : EntityBaseRepository<Match>, IMatchRepository
|
||||
{
|
||||
public MatchRepository(LiveGameContext context)
|
||||
: base(context)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user