コード例 #1
0
ファイル: WordService.cs プロジェクト: phantomkk/mydictionary
 public WordService(IUnitOfWork <DictionaryDbContext> unitOfWork,
                    IWordRepos repos,
                    IWordExampleRepos wordExampleRepos,
                    IExampleRepos exampleRepos,
                    IMapper mapper
                    ) : base(unitOfWork, repos)
 {
     _wordExampleRepos = wordExampleRepos;
     _exampleRepos     = exampleRepos;
     _mapper           = mapper;
 }
コード例 #2
0
 public LearningService(IUnitOfWork <DictionaryDbContext> context, IExampleRepos repos) : base(context, repos)
 {
 }
コード例 #3
0
 public ExampleService(IUnitOfWork <DictionaryDbContext> unitOfWork, IExampleRepos repos) : base(unitOfWork, repos)
 {
 }