//TURNOS public static void guardarTurno(Turno pTurno, string pOperacion) { DataAccessLayerTurnos oDAL = new SQLTurno(); if (pOperacion == "Insert") { oDAL.Insert(pTurno); } else if (pOperacion == "Update") { oDAL.Update(pTurno); } else { throw new Exception(); } }
public static List<Turno> traerTurnos(int pId) { DataAccessLayerTurnos oDAL = new SQLTurno(); return oDAL.GetAll(pId); }
public static void eliminarTurno(int pId) { DataAccessLayerTurnos oDAL = new SQLTurno(); try { oDAL.Delete(pId); } catch (SqlException) { throw new ConsultaVinculadaConExpediente(); } }