示例#1
0
 public CategoryController(OzposloviContext context, UseCaseExecutor executor, IAppActor actor)
 {
     _context  = context;
     _executor = executor;
     _actor    = actor;
 }
 public BrandController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
示例#3
0
 public DirectorController(UseCaseExecutor executor, IApplicationActor actor)
 {
     _executor = executor;
     _actor    = actor;
 }
 public TrackController(UseCaseExecutor executor)
 {
     _executor = executor;
 }
 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;
 }
 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;
 }
 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;
 }
 public ScreeningController(IApplicationUser actor, UseCaseExecutor executor)
 {
     _actor    = actor;
     _executor = executor;
 }
 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;
 }