public DocumentController(IUploadFileCommand uploadFileCommand, ICurrentSchema currentSchema, IRetrieveDocumentsQuery retrieveDocumentsQuery, IRetrieveDocumentUrlQuery retrieveDocumentUrlQuery)
 {
     this.uploadFileCommand        = uploadFileCommand;
     this.currentSchema            = currentSchema;
     this.retrieveDocumentsQuery   = retrieveDocumentsQuery;
     this.retrieveDocumentUrlQuery = retrieveDocumentUrlQuery;
 }
Exemplo n.º 2
0
 public Presentation(IUpdatePresentationCurrentPage updatePresentationCurrentPage, ICurrentSchema currentSchema, IPresentationCurrentPageQuery presentationCurrentPage, IUpdatePresentationStatusCommand updatePresentationStatusCommand)
 {
     this.updatePresentationCurrentPage = updatePresentationCurrentPage;
     this.currentSchema                   = currentSchema;
     this.presentationCurrentPage         = presentationCurrentPage;
     this.updatePresentationStatusCommand = updatePresentationStatusCommand;
 }
Exemplo n.º 3
0
 public StatsController(
     ICurrentSchema currentSchema,
     IStatsRepository statsRepository
     )
 {
     this.currentSchema = currentSchema;
     this.stats         = statsRepository;
 }
Exemplo n.º 4
0
 public HomeController(
     ICurrentSchema schema,
     IRetrieveOrganizationsQuery organizations,
     IRetrievePresentationListingQuery presentations
     )
 {
     this.schema        = schema;
     this.organizations = organizations;
     this.presentations = presentations;
 }
Exemplo n.º 5
0
 public DeckController(
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IConversationRepository conversations,
     ICurrentSchema currentSchema
     )
 {
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.conversations = conversations;
     this.currentSchema = currentSchema;
 }
Exemplo n.º 6
0
        public Conversation(IServiceProvider services, ICurrentSchema currentSchema, IUserRepository users, IConversationRepository conversations)
        {
            var contextAccess = services.GetService <IHttpContextAccessor>();

            httpContext = contextAccess.HttpContext;

            this.services      = services;
            this.currentSchema = currentSchema;
            this.users         = users;
            this.conversations = conversations;
        }
Exemplo n.º 7
0
 public PresentationController(
     ICurrentSchema currentSchema,
     ICreatePresentationCommand createPresentationCommand,
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IUploadFileCommand uploadFileCommand
     )
 {
     this.currentSchema                   = currentSchema;
     this.createPresentationCommand       = createPresentationCommand;
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.uploadFileCommand               = uploadFileCommand;
 }
Exemplo n.º 8
0
 public SignupController(
     NpgsqlConnection connection,
     ICurrentSchema currentSchema,
     ICreatePresentationCommand createPresentationCommand,
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IUploadFileCommand uploadFileCommand)
 {
     this.connection                      = connection;
     this.currentSchema                   = currentSchema;
     this.createPresentationCommand       = createPresentationCommand;
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.uploadFileCommand               = uploadFileCommand;
 }
 public RetrievePresentationToViewQuery(IPresentationRepository presentationRepository, ICurrentSchema currentSchema, IRetrieveDocumentUrlQuery retrieveDocumentUrlQuery)
 {
     this.presentationRepository   = presentationRepository;
     this.currentSchema            = currentSchema;
     this.retrieveDocumentUrlQuery = retrieveDocumentUrlQuery;
 }
Exemplo n.º 10
0
 public StatsRepository(NpgsqlConnection connection, ICurrentSchema currentSchema) : base(connection, currentSchema)
 {
 }
Exemplo n.º 11
0
 public UserAnalyticsSessionRepository(NpgsqlConnection connection, ICurrentSchema currentSchema) : base(connection, currentSchema)
 {
     this.currentSchema = currentSchema;
 }
 public RetrieveOrganizationsQuery(IOrganizationRepository organizations, ICurrentSchema schema)
 {
     this.organizations = organizations;
     this.schema        = schema;
 }
Exemplo n.º 13
0
 public BaseRepository(NpgsqlConnection connection, ICurrentSchema currentSchema)
 {
     this.connection    = connection;
     this.currentSchema = currentSchema;
 }
Exemplo n.º 14
0
 public DocumentRepository(NpgsqlConnection connection, ICurrentSchema currentSchema) : base(connection, currentSchema)
 {
     this.currentSchema = currentSchema;
 }
Exemplo n.º 15
0
 public ConversationRepository(NpgsqlConnection connection, ICurrentSchema currentSchema) : base(connection, currentSchema)
 {
 }
 public PresentationRepository(NpgsqlConnection connection, ICurrentSchema currentSchema) : base(connection, currentSchema)
 {
     this.currentSchema = currentSchema;
 }