public CompositionsRepository(OrchestrateContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #2
0
 protected EntityRepositoryBase(OrchestrateContext context, IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }
예제 #3
0
 public UsersRepository(OrchestrateContext context,
                        IMapper mapper,
                        IStringHasher stringHasher) : base(context, mapper)
 {
     _stringHasher = stringHasher;
 }
예제 #4
0
 public RolesRepository(OrchestrateContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #5
0
 public SheetMusicRepository(OrchestrateContext context, IMapper mapper) : base(context, mapper)
 {
 }