change enum serialization (#68)
whatever Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
This commit is contained in:
parent
976498dc50
commit
515f236632
@ -1,4 +1,5 @@
|
||||
using System.IO;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
@ -63,8 +64,15 @@ namespace InternshipSystem.Api.Controllers
|
||||
.Include(i => i.Documentation)
|
||||
.FirstAsync(i => i.Student.Id == user.PersonNumber, cancellationToken);
|
||||
|
||||
internship.AddNewDocument(documentRequest.Description, documentRequest.Type);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
try
|
||||
{
|
||||
internship.AddNewDocument(documentRequest.Description, documentRequest.Type);
|
||||
await _context.SaveChangesAsync(cancellationToken);
|
||||
}
|
||||
catch (ArgumentException e)
|
||||
{
|
||||
return BadRequest(e.Message);
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ namespace InternshipSystem.Api.Controllers
|
||||
var edition =
|
||||
await Context.Editions
|
||||
.Where(e => e.Id == id)
|
||||
.ProjectTo<EditionResult?>(Mapper.ConfigurationProvider)
|
||||
.ProjectTo<EditionResult>(Mapper.ConfigurationProvider)
|
||||
.FirstOrDefaultAsync(token);
|
||||
|
||||
if (edition == null)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace InternshipSystem.Api.Result
|
||||
{
|
||||
public struct EditionResult
|
||||
public class EditionResult
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public DateTime EditionStart { get; set; }
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using InternshipSystem.Core.ValueObject;
|
||||
|
||||
@ -31,6 +32,11 @@ namespace InternshipSystem.Core.Entity.Internship
|
||||
|
||||
public void AddNewDocument(string description, DocumentType type)
|
||||
{
|
||||
if (Documentation.Any(d => d.Type == type))
|
||||
{
|
||||
throw new ArgumentException("Internship already has a document of given type");
|
||||
}
|
||||
|
||||
var document = new Document
|
||||
{
|
||||
Description = description,
|
||||
|
Loading…
Reference in New Issue
Block a user