18 lines
310 B
C#
18 lines
310 B
C#
using Entities.Contracts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using SharedDATA.Api;
|
|
using TechHelper.Context;
|
|
|
|
namespace TechHelper.Repository
|
|
{
|
|
public class UserRepository : Repository<User>, IRepository<User>
|
|
{
|
|
public UserRepository(ApplicationContext dbContext) : base(dbContext)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|