public static void Devolucion(Prestamo prestamo, Libros libro) { // Operaciones.WriteLogsDebug("PrestamoBrl", "Obtener", string.Format("{0} Info: {1}", // DateTime.Now.ToString(), // "Empezando a ejecutar el método lógica de negocio para Obtener un usuario")); try { PrestamoDAL.Devolucion(prestamo, libro); } catch (SqlException ex) { // Operaciones.WriteLogsRelease("PrestamoBrl", "Obtener", string.Format("{0} Error: {1}", // DateTime.Now.ToString(), DateTime.Now.ToString(), ex.Message)); throw ex; } catch (Exception ex) { // Operaciones.WriteLogsRelease("PrestamoBrl", "Obtener", string.Format("{0} Error: {1}", // DateTime.Now.ToString(), DateTime.Now.ToString(), ex.Message)); throw ex; } }
public static Prestamo ObtenerID() { // Operaciones.WriteLogsDebug("LibroBrl", "Obtener", string.Format("{0} Info: {1}", //DateTime.Now.ToLongDateString(), //"Empezando a ejecutar el metodo logica de negocio para Obtener un cliente")); try { return(PrestamoDAL.ObtenerID()); } catch (SqlException ex) { //Operaciones.WriteLogsRelease("LibroBrl", "Obtener", string.Format("{0} {1} Error: {2}", // DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), ex.Message)); throw ex; } catch (Exception ex) { // Operaciones.WriteLogsRelease("LibroBrl", "Obtener", string.Format("{0} {1} Error: {2}", // DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), ex.Message)); throw ex; } }
public DataTable SelectLikeActualizarFecha(string texto) { PrestamoDAL dal = new PrestamoDAL(); return(dal.SelectLikeActualizarFecha(texto)); }
public DataTable SelectLikeRPDM(byte opcionLike, string texto) { PrestamoDAL dal = new PrestamoDAL(); return(dal.SelectLikeRPDM(opcionLike, texto)); }