17 lines
464 B
C#
17 lines
464 B
C#
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Repositories
|
|||
|
{
|
|||
|
public class ShopkeeperRepository : Repository<Shopkeeper>, IRepository<Shopkeeper>
|
|||
|
{
|
|||
|
public ShopkeeperRepository(ApplicationDbContext _dbContext) : base(_dbContext)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|