Skip to content

Commit 96279ca

Browse files
authored
Merge pull request #26 from jkamleh/hotfix-#25
Fixes #25
2 parents d77fb6d + 366607e commit 96279ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

launcher-csharp/eSignature/Controllers/Eg002SigningViaEmailController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public IActionResult Create(string signerEmail, string signerName, string ccEmai
3737
var accountId = RequestItemsService.Session.AccountId;
3838

3939
// Call the Examples API method to create and send an envelope via email
40-
var envelopeId = SingingViaEmail.SendEnvelopeViaEmail(signerEmail, signerName, ccEmail, ccName, accessToken,
40+
var envelopeId = SigningViaEmail.SendEnvelopeViaEmail(signerEmail, signerName, ccEmail, ccName, accessToken,
4141
basePath, accountId, Config.docDocx, Config.docPdf, RequestItemsService.Status);
4242

4343
RequestItemsService.EnvelopeId = envelopeId;

launcher-csharp/eSignature/Examples/SigningViaEmail.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace eSignature.Examples
99
{
10-
public static class SingingViaEmail
10+
public static class SigningViaEmail
1111
{
1212
/// <summary>
1313
/// Creates an envelope that would include two documents and add a signer and cc recipients to be notified via email

launcher-csharp/eSignature/Models/EmbeddedSigningModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public class EmbeddedSigningModel
44
{
5-
public string SingerEmail { get; set; }
6-
public string SingerName { get; set; }
5+
public string SignerEmail { get; set; }
6+
public string SignerName { get; set; }
77
}
88
}

0 commit comments

Comments
 (0)