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