Initial commit

This commit is contained in:
2021-06-15 10:59:47 +02:00
commit 8e156ba356
65 changed files with 1786 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace GerstITS.Examples.Logic.Example
{
public class Example
{
#region Properties
public string FirstName { get; set; }
public string LastName { get; set; }
public string Description { get; set; }
#endregion
}
}

View File

@@ -0,0 +1,8 @@
namespace GerstITS.Examples.Logic.Example
{
public interface IExampleProvider
{
Example GetById(int id);
Example GetById_v1_1(int id);
}
}

View File

@@ -0,0 +1,51 @@
using AutoMapper;
using GerstITS.Data;
namespace GerstITS.Examples.Logic.Example
{
internal sealed class ExampleProvider : IExampleProvider
{
#region Fields
private readonly IMapper _mapper;
#endregion
#region Constructors
public ExampleProvider(IMapper mapper)
{
_mapper = mapper;
}
#endregion
#region IExampleProvider
public Example GetById(int id)
{
ThrowsAnExceptionIfEntityIsNotFound(id);
return _mapper.Map<Example>(id);
}
public Example GetById_v1_1(int id)
{
ThrowsAnExceptionIfEntityIsNotFound(id);
return _mapper.Map<Example>(id);
}
#endregion
#region Methods
private static void ThrowsAnExceptionIfEntityIsNotFound(int id)
{
if (id % 2 == 0)
throw new EntityNotFoundException($"Example mit der Id '{id}' nicht gefunden.");
}
#endregion
}
}

View File

@@ -0,0 +1,19 @@
using AutoMapper;
namespace GerstITS.Examples.Logic.Example
{
internal sealed class IntegerMapping : Profile
{
#region Construtcors
public IntegerMapping()
{
CreateMap<int, Example>()
.ForMember(x => x.FirstName, m => m.MapFrom((s,t) => $"First Name {s}"))
.ForMember(x => x.LastName, m => m.MapFrom((s,t) => $"Last Name {s}"))
.ForMember(x => x.Description, m => m.MapFrom((s,t) => $"Useful description for id '{s}'"));
}
#endregion
}
}