コード例 #1
0
 public PostCreationService(
     IUnitOfWorkFactory unitOfWorkFactory,
     IPostTaggingService postTaggingService,
     ILocationNameService locationNameService,
     OctopostSettings settings)
 {
     this.unitOfWorkFactory   = unitOfWorkFactory;
     this.postTaggingService  = postTaggingService;
     this.locationNameService = locationNameService;
     this.settings            = settings;
 }
コード例 #2
0
 public CommentCreationService(IUnitOfWorkFactory unitOfWorkFactory, ILocationNameService locationNameService)
 {
     this.unitOfWorkFactory   = unitOfWorkFactory;
     this.locationNameService = locationNameService;
 }