예제 #1
0
 public UserUseCasesController(IApplicationActor actor, IUseCaseExecutor executor)
 {
     this.actor    = actor;
     this.executor = executor;
 }
예제 #2
0
 public PictureController(IUseCaseExecutor executor, IApplicationActor actor)
 {
     this.executor = executor;
     this.actor    = actor;
 }
 public RegisterController(IUseCaseExecutor executor)
 {
     this.executor = executor;
 }
 public CategoryController(IUseCaseExecutor executor)
 {
     this.executor = executor;
 }
예제 #5
0
 public FrontendPieceOfArtController(IUseCaseExecutor executor, IApplicationActor actor)
 {
     this.executor = executor;
     this.actor    = actor;
 }
예제 #6
0
 public CommentController(IUseCaseExecutor executor)
 {
     this.executor = executor;
 }
예제 #7
0
 public CommentController(IUseCaseExecutor executor, IApplicationActor actor)
 {
     this.executor = executor;
     this.actor    = actor;
 }
 public UserUseCasesController(IUseCaseExecutor executor)
 {
     this.executor = executor;
 }