예제 #1
0
 public CategoryController(OzposloviContext context, UseCaseExecutor executor, IAppActor actor)
 {
     _context  = context;
     _executor = executor;
     _actor    = actor;
 }
예제 #2
0
 public BrandController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #3
0
 public DirectorController(UseCaseExecutor executor, IApplicationActor actor)
 {
     _executor = executor;
     _actor    = actor;
 }
 public TrackController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #5
0
 public GenreController(IApplicationActor actor, UseCaseExecutor executor, BookstoreContext context)
 {
     _actor    = actor;
     _executor = executor;
     _context  = context;
 }
예제 #6
0
 public PictureController(UseCaseExecutor executor)
 {
     this.executor = executor;
 }
 public RegisterController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #8
0
 public CommentController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #9
0
 public RoleController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #10
0
 public ProductController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #11
0
 public CountriesController(IGetCountriesCommand getCountries, IGetCountryCommand getCountry, IAddCountryCommand addCountry, IEditCountryCommand editCountry, IDeleteCountryCommand deleteCountry, UseCaseExecutor executor)
 {
     this.getCountries  = getCountries;
     this.getCountry    = getCountry;
     this.addCountry    = addCountry;
     this.editCountry   = editCountry;
     this.deleteCountry = deleteCountry;
     this.executor      = executor;
 }
예제 #12
0
 public AuditLogController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #13
0
 public ApplicationUserController(IMapper mapper, UseCaseExecutor useCaseExecutor)
 {
     _mapper          = mapper;
     _useCaseExecutor = useCaseExecutor;
 }
예제 #14
0
 public KorisnikController(IActorInApp actor, UseCaseExecutor executor)
 {
     this.executor = executor;
     this.actor    = actor;
 }
 public TagController(UseCaseExecutor executor, IApplicationActor actor)
 {
     this.executor = executor;
     this.actor    = actor;
 }
예제 #16
0
 public PlayListController(UseCaseExecutor executor)
 {
     this.executor = executor;
 }
예제 #17
0
 public LogController(UseCaseExecutor executor)
 {
     this.executor = executor;
 }
예제 #18
0
 public JobsController(UseCaseExecutor executor, IApplicationActor actor)
 {
     this.executor = executor;
     _actor        = actor;
 }
예제 #19
0
 public UseCaseLogController(UseCaseExecutor useCaseExecutor)
 {
     _useCaseExecutor = useCaseExecutor;
 }
예제 #20
0
 public ScreeningController(IApplicationUser actor, UseCaseExecutor executor)
 {
     _actor    = actor;
     _executor = executor;
 }
예제 #21
0
 public AuthorController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #22
0
 public ProductionsController(IGetProductionsCommand getProductions, IGetProductionCommand getProduction, IAddProductionCommand addProduction, IEditProductionCommand editProduction, IDeleteProductionCommand deleteProduction, UseCaseExecutor executor)
 {
     this.getProductions   = getProductions;
     this.getProduction    = getProduction;
     this.addProduction    = addProduction;
     this.editProduction   = editProduction;
     this.deleteProduction = deleteProduction;
     this.executor         = executor;
 }
예제 #23
0
 public CategoryController(IApplicationActor actor, UseCaseExecutor executor)
 {
     this.actor    = actor;
     this.executor = executor;
 }
 public PorudzbinaController(UseCaseExecutor executor)
 {
     this.executor = executor;
 }
 public PlaylistController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #26
0
 public TicketController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #27
0
 public OrderController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
예제 #28
0
 public LogsController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
 public ProizvodController(IApplicationActor actor, UseCaseExecutor executor)
 {
     this.actor    = actor;
     this.executor = executor;
 }
예제 #30
0
 public MovieController(UseCaseExecutor executor)
 {
     _executor = executor;
 }