Ejemplo n.º 1
0
        public bool Save(Domain.Soft.specialties spe)
        {
            bool result = false;

            Infraestructura.Soft.Repository.RepositorySpecialties ss = new Infraestructura.Soft.Repository.RepositorySpecialties();
            result = ss.Save(spe);
            return(result);
        }
Ejemplo n.º 2
0
        public bool Save(List <Domain.Soft.specialties> spe)
        {
            bool result = false;

            Infraestructura.Soft.Repository.RepositorySpecialties ss = new Infraestructura.Soft.Repository.RepositorySpecialties();
            foreach (var es in spe)
            {
                result = ss.Save(es);
            }
            return(result);
        }