예제 #1
0
 public static void AgregarNotificaciones(string titulo, string msj)
 {
     try
     {
         using (PROMETHEUS_DBEntities db = new PROMETHEUS_DBEntities())
         {
             db.insertNotificaciones(titulo, msj);
             db.SaveChanges();
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }