コード例 #1
0
 public bool AsociarMensajeSucursal(Guid UidMensaje, Guid UidSucursal)
 {
     try
     {
         oMensaje     = new Mensaje();
         oMensaje.Uid = UidMensaje;
         return(oMensaje.AsociarConSucursal(UidSucursal));
     }
     catch (Exception)
     {
         throw;
     }
 }