Ejemplo n.º 1
0
        public List <Expertise> AddNewExpertise(Expertise exper)
        {
            DBservices db = new DBservices();

            if (db.AddNewExpertise(exper) == 1)
            {
                return(db.GetAllExpertisesFromSQL());
            }
            else
            {
                return(null);
            }
        }