コード例 #1
0
ファイル: LayerBussinesReserva.cs プロジェクト: Siisas/Prueba
 public int EditarReserva(Int64 Id, string NombreSolicitante, string ElementoAPrestar, DateTime FechaPrestao, string Observaciones, DateTime fechadevolucion)
 {
     try
     {
         return(DALe.EditarReserva(Id, NombreSolicitante, ElementoAPrestar, FechaPrestao, Observaciones, fechadevolucion));
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         DALe = null;
     }
 }
コード例 #2
0
ファイル: LayerBussinesReserva.cs プロジェクト: Siisas/Prueba
 public int EliminarReserva(Int64 Id)
 {
     try
     {
         return(DALe.EliminarReserva(Id));
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         DALe = null;
     }
 }
コード例 #3
0
ファイル: LayerBussinesReserva.cs プロジェクト: Siisas/Prueba
 public DataTable MostarReserva()
 {
     try
     {
         return(DALe.MostarReserva());
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         DALe = null;
     }
 }