12 lines
245 B
C#
12 lines
245 B
C#
using DAL.Models.Entities;
|
|
using HRD.WebApi.Repositories;
|
|
|
|
namespace DAL.Repositories
|
|
{
|
|
public class RangRepository : BaseRepository<Rang>
|
|
{
|
|
public RangRepository(WebApiContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
} |