Skip to content

Commit

Permalink
Merge pull request #118 from SkillsFundingAgency/MF-505_additional_do…
Browse files Browse the repository at this point in the history
…wnload_fields

MF-505 - Correct CSV header titles
  • Loading branch information
SijiOdun authored Apr 20, 2020
2 parents 6e5ad54 + 1c11f7a commit 42e5b01
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ namespace SFA.DAS.EmployerCommitmentsV2.Web.Models.Apprentice
{
public class ApprenticeshipDetailsCsvModel
{
[Name("Apprentice Name")]
[Name("Apprentice name")]
public string ApprenticeName { get ; private set ; }
[Name("Apprenticeship training course")]
public string CourseName { get; private set; }
[Name("Planned start date")]
public string PlannedStartDate { get; private set; }
[Name("Planned end date")]
public string PlannedEndDate { get ; private set ; }
[Name("Paused Date")]
[Name("Paused date")]
public string PausedDate { get; private set; }
[Name("Training provider")]
public string Provider { get; private set; }
[Name("Reference")]
public string CohortReference { get; private set; }
[Name("Uln")]
[Name("ULN")]
public string Uln { get; private set; }
[Name("Date of Birth")]
[Name("Date of birth")]
public string DateOfBirth { get; private set; }
[Name("Total agreed apprenticeship price")]
public string TotalAgreedPrice { get; private set; }
[Name("Your Reference")]
[Name("Your reference")]
public string EmployerRef { get; private set; }
[Name("Status")]
public string Status { get ; private set ; }
Expand Down

0 comments on commit 42e5b01

Please sign in to comment.