Skip to content

Commit d8066fc

Browse files
update last name
1 parent 29ea016 commit d8066fc

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

DocuSign.Workspaces/DocuSign.Workspaces/DocuSign.Workspaces.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<PackageReference Include="AutoFixture" Version="4.18.1" />
2424
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
2525
<PackageReference Include="DocuSign.eSign.dll" Version="8.5.0" />
26-
<PackageReference Include="Docusign.IAM.SDK" Version="1.0.0-beta.6" />
26+
<PackageReference Include="Docusign.IAM.SDK" Version="1.0.0-beta.7" />
2727
<PackageReference Include="Microsoft.OpenApi" Version="2.3.0" />
2828
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.18" />
2929
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="7.0.18" />

DocuSign.Workspaces/DocuSign.Workspaces/Domain/CarePlans/CarePlansService.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Collections.Generic;
33
using System.Diagnostics;
44
using System.Linq;
5+
using System.Text.Json;
56
using System.Threading.Tasks;
67
using DocuSign.eSign.Model;
78
using Docusign.IAM.SDK.Models.Components;
@@ -76,7 +77,7 @@ public async Task<List<CareDocumentsModel>> SubmitToPhysician(SubmitToPhysicians
7677
{
7778
Email = model.Email,
7879
FirstName = model.Physician.Name,
79-
LastName = ""
80+
LastName = "Last Name"
8081
};
8182
await ExecuteDocuSignCallAsync(
8283
"WorkspaceUsers.AddWorkspaceUserAsync",

0 commit comments

Comments
 (0)