Last active
November 21, 2024 01:36
-
-
Save kevinah95/75a3dfe81de7fd539d79baea8bcde20b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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