public Eg039InPersonSigningController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     DsPingUrl     = config.AppUrl + "/";
     DsReturnUrl   = config.AppUrl + "/dsReturn";
     ViewBag.title = "In Person Signing";
 }
 public SetEnvelopeTabValue(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "SetTabValues";
     dsPingUrl     = config.AppUrl + "/";
     dsReturnUrl   = config.AppUrl + "/dsReturn";
 }
 public ResponsiveSigning(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     dsPingUrl     = config.AppUrl + "/";
     dsReturnUrl   = config.AppUrl + "/dsReturn";
     ViewBag.title = "Embedded Signing Ceremony";
 }
Esempio n. 4
0
 public Eg017SetTemplateTabValuesController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "SetTabValues";
     dsPingUrl     = config.AppUrl + "/";
     dsReturnUrl   = config.AppUrl + "/dsReturn";
 }
Esempio n. 5
0
 public LocalsFilter(
     DSConfiguration docuSignConfiguration,
     IRequestItemsService requestItemsService,
     IMemoryCache cache,
     IConfiguration configuration)
 {
     DocuSignConfiguration = docuSignConfiguration;
     _cache               = cache;
     _configuration       = configuration;
     _requestItemsService = requestItemsService;
 }
Esempio n. 6
0
        public Eg001EmbeddedSigningController(DSConfiguration config, IRequestItemsService requestItemsService)
            : base(config, requestItemsService)
        {
            dsPingUrl     = config.AppUrl + "/";
            dsReturnUrl   = config.AppUrl + "/dsReturn";
            ViewBag.title = "Embedded Signing Ceremony";

            //set credential of SharePoint online
            SecureString secureString = new SecureString();

            foreach (char c in "HackathonTeam5@LCG".ToCharArray())
            {
                secureString.AppendChar(c);
            }
            credentials = new SharePointOnlineCredentials("*****@*****.**", secureString);
        }
 public Eg009UseTemplateController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
 }
Esempio n. 8
0
 public RecipientAuthAccessCode(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Access Code Authentication";
 }
 public Eg035ScheduledSendingController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
 }
 public Eg021PhoneAuthController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Phone Authenticatication";
 }
Esempio n. 11
0
 public Eg015EnvelopeTabDataController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Get Envelope Tab Information";
 }
Esempio n. 12
0
 public EnvelopsListController(DSConfiguration config, IRequestItemsService requestItemsService)
 {
     Config = config;
     RequestItemsService = requestItemsService;
     ViewBag.title       = "Envelops info";
 }
 public Eg005EnvelopeRecipientsController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "List envelope recipients";
 }
 public Eg031BulkSendEnvelopesController(DSConfiguration config, IRequestItemsService requestItemsService) :
     base(config, requestItemsService)
 {
 }
Esempio n. 15
0
 public Eg01CreateClickwrapController(
     DSConfiguration dsConfig,
     IRequestItemsService requestItemsService)
     : base(dsConfig, requestItemsService)
 {
 }
Esempio n. 16
0
 public Eg05GetRoomsWithFiltersController(
     DSConfiguration dsConfig,
     IRequestItemsService requestItemsService) : base(dsConfig, requestItemsService)
 {
 }
 public Eg05GetClickwrapResponsesController(
     DSConfiguration dsConfig,
     IRequestItemsService requestItemsService)
     : base(dsConfig, requestItemsService)
 {
 }
 public Eg026PermissionChangeSingleSettingController(DSConfiguration config, IRequestItemsService requestItemsService) :
     base(config, requestItemsService)
 {
 }
 public Eg006EnvelopeDocsController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "List envelope documents";
 }
Esempio n. 20
0
 public Eg018EnvelopeCustomFieldDataController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Get custom field data";
 }
Esempio n. 21
0
 public Eg011EmbeddedSendingController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Embedded Sending";
 }
 public Eg032PauseSignatureWorkflowController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Pause a signature workflow";
 }
 public Eg014CollectPaymentController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Envelope sent";
 }
 public ScheduledSending(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
 }
 public Eg002SigningViaEmailController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Signing request by email";
 }
 public Eg06CreateExternalFormFillSessionController(
     DSConfiguration dsConfig,
     IRequestItemsService requestItemsService) : base(dsConfig, requestItemsService)
 {
 }
 public Eg025PermissionSetUserGroupController(DSConfiguration config, IRequestItemsService requestItemsService) :
     base(config, requestItemsService)
 {
 }
Esempio n. 28
0
 public Eg030ApplyBrandToTemplateController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
     ViewBag.title = "Apply a brand to an envelope created from a template";
 }
Esempio n. 29
0
 public HomeController(IRequestItemsService requestItemsService)
 {
     RequestItemsService = requestItemsService;
 }
 public Eg034ConditionalRecipientsWorkflowController(DSConfiguration config, IRequestItemsService requestItemsService)
     : base(config, requestItemsService)
 {
 }