Example #1
0
 public static DataSet SelectAll()
 {
     try
     {
         return(DALReclamo.SelectAll());
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 public static DataSet SelectByIdUser(string usuarioId)
 {
     try
     {
         return(DALReclamo.SelectByIdUser(usuarioId));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #3
0
 public static int Update(int idReclamo, string pathImagen)
 {
     try
     {
         return(DALReclamo.Update(idReclamo, pathImagen));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #4
0
 public static int UpdateStatus(int idReclamo, int idEstadoReclamo)
 {
     try
     {
         return(DALReclamo.UpdateStatus(idReclamo, idEstadoReclamo));
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #5
0
 public static int Insert(int idReserva, string patente, string idUsuario, int idTipoReclamo, string detalle)
 {
     try
     {
         return(DALReclamo.Insert(idReserva, patente, idUsuario, idTipoReclamo, detalle));
     }
     catch (Exception)
     {
         throw;
     }
 }