示例#1
0
 public PresentationController(
     ICurrentSchema currentSchema,
     ICreatePresentationCommand createPresentationCommand,
     IRetrievePresentationToViewQuery retrievePresentationToViewQuery,
     IUploadFileCommand uploadFileCommand
     )
 {
     this.currentSchema                   = currentSchema;
     this.createPresentationCommand       = createPresentationCommand;
     this.retrievePresentationToViewQuery = retrievePresentationToViewQuery;
     this.uploadFileCommand               = uploadFileCommand;
 }
示例#2
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;
 }