Example #1
0
        public static bool ActivaEmergencia(EmergenciaDTO theEmergenciaDTO)
        {
            bool respuesta = EmergenciaDAL.ActivaEmergencia(theEmergenciaDTO);

            return(respuesta);
        }
Example #2
0
        public static bool Insert(EmergenciaDTO myEmergenciaDTO)
        {
            bool resultado = EmergenciaDAL.Insert(myEmergenciaDTO);

            return(resultado);
        }
Example #3
0
        public static bool Update(EmergenciaDTO myEmergenciaDTO)
        {
            bool resultado = EmergenciaDAL.Update(myEmergenciaDTO);

            return(resultado);
        }
Example #4
0
        public static bool Delete(DTO.EmergenciaDTO myEmergenciaDTO)
        {
            bool resultado = EmergenciaDAL.Delete(myEmergenciaDTO);

            return(resultado);
        }