Validation
Command validation
public class AddClassifiedAdCommand : ICommand
{
[Range(0, decimal.PositiveInfinity)]
public decimal Price { get; set; }
[Required]
public string AdvertismentText { get; set; }
[Required]
public string PhoneNumber { get; set; }
}Last updated