add_hours (#62)

Add hours to registration

merge

add document scan endpoint

Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
This commit is contained in:
maxchil 2020-10-08 21:57:20 +02:00
parent 7124b457dc
commit 102ec1feac
3 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,7 @@ namespace InternshipSystem.Api.Commands
public DateTime? End { get; set; }
public UpdateMentor? Mentor { get; set; }
public List<long> Subjects { get; set; }
public int? Hours { get; set; }
public long? Type { get; set; }
}

View File

@ -36,6 +36,7 @@ namespace InternshipSystem.Api.UseCases
{
subjectRegistration.Start = registrationCommand.Start ?? subjectRegistration.Start;
subjectRegistration.End = registrationCommand.End ?? subjectRegistration.End;
subjectRegistration.DeclaredHours = registrationCommand.Hours ?? subjectRegistration.DeclaredHours;
if (registrationCommand.Type.HasValue)
{

View File

@ -16,8 +16,10 @@ namespace InternshipSystem.Core.Entity.Internship
public Mentor Mentor { get; set; }
public List<ProgramSubject> Subjects { get; set; }
public InternshipType Type { get; set; }
public int DeclaredHours { get; set; }
public DocumentState State { get; set; }
public static InternshipRegistration Create()
{
return new InternshipRegistration();