public bool Add(SocioInternacional model)
 {
     try
     {
         _databaseContext.Add(model);
         _databaseContext.SaveChanges();
     }
     catch (System.Exception)
     {
         return(false);
     }
     return(true);
 }
 public bool Add(OrganizacionResponsable model)
 {
     try
     {
         _databaseContext.Add(model);
         _databaseContext.SaveChanges();
     }
     catch (System.Exception)
     {
         return(false);
     }
     return(true);
 }