classlib/ExpenseTracker.Application/Accounts/Commands/Create/CreateAccountCommandValidator.cs
2024-08-07 21:12:02 +03:00

21 lines
639 B
C#

using FluentValidation;
using ExpenseTracker.Domain.Enums;
namespace ExpenseTracker.Application.Accounts.Commands.Create;
public class CreateAccountCommandValidator : AbstractValidator<CreateAccountCommand>
{
public CreateAccountCommandValidator()
{
RuleFor(e => e.Name)
.NotEmpty();
RuleFor(e => e.InitialBalance)
.NotNull();
RuleFor(e => e.Currency)
.Must(c => Currency.FromName(c) is not null)
.WithMessage(c => $"'{nameof(c.Currency)}' must be one of the following: '{String.Join("', ", Currency.Enumerations.Values.Select(v => v.Name))}'.");
}
}