using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DBHelper { public class EntityValidationException : Exception { public List EntityValidationErrors = new List(); } }