コード例 #1
0
ファイル: UnitOfWork.cs プロジェクト: fabiocord/pmga
 public UnitOfWork(PmgaDbContext context)
 {
     this.context = context;
 }
コード例 #2
0
ファイル: UserRepository.cs プロジェクト: fabiocord/pmga
 public UserRepository(PmgaDbContext context)
 {
     this.context = context;
 }
コード例 #3
0
 public RoleRepository(PmgaDbContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public PermissionRepository(PmgaDbContext context)
 {
     this.context = context;
 }