Exemplo n.º 1
0
        //employer
        public void addEmployer(Employer e)
        {
            int id = e.Id;

            if (Dal.EmployerExist(id))
            {
                throw new NotImplementedException("This id is already use");
            }
            else
            {
                Dal.addEmployer(e);
            }
        }