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