Skip to content

Instantly share code, notes, and snippets.

@kevinah95
Last active November 21, 2024 01:36
Show Gist options
  • Save kevinah95/75a3dfe81de7fd539d79baea8bcde20b to your computer and use it in GitHub Desktop.
Save kevinah95/75a3dfe81de7fd539d79baea8bcde20b to your computer and use it in GitHub Desktop.
using AutoMapper;
using AutoMapper.Internal;
using MappingObjects.Models;
namespace MappingObjects.Mappers;
public static class CartToSummaryMapper
{
public static MapperConfiguration GetMapperConfiguration()
{
MapperConfiguration config = new(cfg =>
{
cfg.Internal().MethodMappingEnabled = false;
cfg.CreateMap<Cart, Summary>()
.ForMember(dest => dest.FullName,
opt => opt.MapFrom(src =>
string.Format("{0} {1}", src.Customer.FirstName, src.Customer.LastName)));
});
return config;
}
}
using System.Data;
using FluentValidation.Models;
namespace FluentValidation.Validators;
public class OrderValidator: AbstractValidator<Order>
{
public OrderValidator()
{
RuleFor(order => order.OrderId)
.NotEmpty();
RuleFor(order => order.CustomerName)
.NotNull()
.WithName("Name");
RuleFor(order => order.CustomerName)
.MinimumLength(5)
.WithSeverity(Severity.Warning);
RuleFor(order => order.CustomerEmail)
.NotEmpty()
.EmailAddress();
RuleFor(order => order.CustomerLevel)
.IsInEnum();
When(order => order.CustomerLevel == CustomerLevel.Gold, () =>
{
RuleFor(order => order.Total)
.LessThan(500);
RuleFor(order => order.Total)
.GreaterThan(1000);
}).Otherwise(() =>
{
RuleFor(order => order.Total)
.LessThan(1000);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment