Introduce dtos

This commit is contained in:
2023-10-16 22:37:49 +02:00
parent 707bfae2e3
commit fc98f99eda
9 changed files with 107 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
using GerbilManager.Dtos;
using GerbilManager.Models;
namespace GerbilManager.Converter
{
public static class LitterConverterExtension
{
public static LitterDto AsDto(this Litter litter)
{
return new LitterDto{
Id = litter.Id,
Date = litter.Date,
Father = litter.Father.AsDto(),
Mother = litter.Mother.AsDto(),
Name = litter.Name,
Strength = litter.Strength
};
}
}
}