public DeckController(
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IConversationRepository conversations,
     ICurrentSchema currentSchema
     )
 {
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.conversations = conversations;
     this.currentSchema = currentSchema;
 }
Beispiel #2
0
 public PresentationController(
     ICurrentSchema currentSchema,
     ICreatePresentationCommand createPresentationCommand,
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IUploadFileCommand uploadFileCommand
     )
 {
     this.currentSchema                   = currentSchema;
     this.createPresentationCommand       = createPresentationCommand;
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.uploadFileCommand               = uploadFileCommand;
 }
Beispiel #3
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;
 }