コード例 #1
0
 public CharmCommandService(ICharmCategoryRepository charmCategoryRepository,
                            ICharmRepository charmRepository,
                            IPathManager pathManager,
                            IFileManager fileManager)
 {
     this.charmCategoryRepository = charmCategoryRepository;
     this.charmRepository         = charmRepository;
     this.pathManager             = pathManager;
     this.fileManager             = fileManager;
 }
コード例 #2
0
 public CharmCategoryQueryService(ICharmCategoryRepository charmCategoryRepository, IMapper mapper)
 {
     this.charmCategoryRepository = charmCategoryRepository;
     this.mapper = mapper;
 }
コード例 #3
0
 public CharmCategoryCommandService(ICharmCategoryRepository charmCategoryRepository)
 {
     this.charmCategoryRepository = charmCategoryRepository;
 }