Esempio n. 1
0
 public string ObtenerLogotipoEmpresa(int intIdEmpresa)
 {
     try
     {
         string logotipo     = servicioMantenimiento.ObtenerLogotipoEmpresa(intIdEmpresa);
         string strRespuesta = "";
         if (logotipo != null)
         {
             strRespuesta = serializer.Serialize(logotipo);
         }
         return(strRespuesta);
     }
     catch (Exception ex)
     {
         throw new WebFaultException <string>(ex.Message, HttpStatusCode.InternalServerError);
     }
 }