14 lines
303 B
C#
14 lines
303 B
C#
using Entities.Contracts;
|
|
using SharedDATA.Api;
|
|
using TechHelper.Context;
|
|
|
|
namespace TechHelper.Repository
|
|
{
|
|
public class KeyPointRepository : Repository<KeyPoint>, IRepository<KeyPoint>
|
|
{
|
|
public KeyPointRepository(ApplicationContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
}
|