public void AddEmployer(Employer e) { if (DateTime.Now < e.DateEstablishment) { throw new Exception("The date specified is invalid!"); } dal.AddEmployer(e); }