source: ChapterX.Infrastructure/Repositories/PermissionLevelRepository.cs@ a8f4a2d

main
Last change on this file since a8f4a2d was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added files

  • Property mode set to 100644
File size: 495 bytes
RevLine 
[877c13c]1using ChapterX.Domain.Entities;
2using ChapterX.Domain.Repositories;
3using ChapterX.Infrastructure.Data.DataContext;
4using System;
5using System.Collections.Generic;
6using System.Linq;
7using System.Text;
8using System.Threading.Tasks;
9
10namespace ChapterX.Infrastructure.Repositories
11{
12 public class PermissionLevelRepository : GenericRepository<PermissionLevel>, IPermissionLevelRepository
13 {
14 public PermissionLevelRepository(ApplicationDbContext context) : base(context) { }
15 }
16}
Note: See TracBrowser for help on using the repository browser.